]> git.sesse.net Git - vlc/blob - modules/audio_filter/converter/a52tospdif.c
S/PDIF fixes.
[vlc] / modules / audio_filter / converter / a52tospdif.c
1 /*****************************************************************************
2  * a52tospdif.c : encapsulates A/52 frames into S/PDIF packets
3  *****************************************************************************
4  * Copyright (C) 2002 VideoLAN
5  * $Id: a52tospdif.c,v 1.2 2002/08/11 23:26:28 massiot Exp $
6  *
7  * Authors: Christophe Massiot <massiot@via.ecp.fr>
8  *          Stéphane Borel <stef@via.ecp.fr>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  * 
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include <errno.h>
29 #include <stdlib.h>                                      /* malloc(), free() */
30 #include <string.h>
31
32 #include <vlc/vlc.h>
33 #include "audio_output.h"
34 #include "aout_internal.h"
35
36 /*****************************************************************************
37  * Local prototypes
38  *****************************************************************************/
39 static int  Create    ( vlc_object_t * );
40
41 static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
42                         aout_buffer_t * );
43
44 /*****************************************************************************
45  * Module descriptor
46  *****************************************************************************/
47 vlc_module_begin();
48     set_description( _("aout filter for A/52->S/PDIF encapsulation") );
49     set_capability( "audio filter", 10 );
50     set_callbacks( Create, NULL );
51 vlc_module_end();
52
53 /*****************************************************************************
54  * Create: allocate trivial mixer
55  *****************************************************************************
56  * This function allocates and initializes a Crop vout method.
57  *****************************************************************************/
58 static int Create( vlc_object_t *p_this )
59 {
60     aout_filter_t * p_filter = (aout_filter_t *)p_this;
61
62     if ( p_filter->input.i_format != AOUT_FMT_A52
63           && p_filter->output.i_format != AOUT_FMT_SPDIF )
64     {
65         return -1;
66     }
67
68     p_filter->pf_do_work = DoWork;
69     p_filter->b_in_place = 0;
70
71     return 0;
72 }
73
74 /*****************************************************************************
75  * DoWork: convert a buffer
76  *****************************************************************************/
77 static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
78                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
79 {
80     static const u8 p_sync[6] = { 0x72, 0xF8, 0x1F, 0x4E, 0x01, 0x00 };
81     u16 i_length = p_in_buf->i_nb_samples;
82     u16 * pi_length;
83     byte_t * p_in = p_in_buf->p_buffer;
84     byte_t * p_out = p_out_buf->p_buffer;
85
86     /* Copy the S/PDIF headers. */
87     memcpy( p_out, p_sync, 6 );
88     pi_length = (u16 *)(p_out + 6);
89     *pi_length = i_length;
90
91     /* FIXME : if i_length is odd, the following code sucks. What should
92      * we do ? --Meuuh */
93
94 #ifndef WORDS_BIGENDIAN
95 #   ifdef HAVE_SWAB
96     swab( p_out + 8, p_in, i_length );
97 #   else
98     p_out += 8;
99     for ( i = 0; i < i_length / 2; i++ )
100     {
101         p_out[0] = p_in[1];
102         p_out[1] = p_in[0];
103         p_out += 2; p_in += 2;
104     }
105 #   endif
106
107 #else
108     p_filter->p_vlc->pf_memcpy( p_out + 8, p_in, i_length );
109 #endif
110
111     p_filter->p_vlc->pf_memset( p_out + 8 + i_length, 0,
112                                AOUT_SPDIF_SIZE - i_length - 8 );
113
114     p_out_buf->i_nb_samples = 1;
115 }
116