]> git.sesse.net Git - vlc/blob - modules/audio_filter/converter/a52tospdif.c
aout_filter_t.(in|out)put -> aout_filter_t.fmt_(in|out).audio
[vlc] / modules / audio_filter / converter / a52tospdif.c
1 /*****************************************************************************
2  * a52tospdif.c : encapsulates A/52 frames into S/PDIF packets
3  *****************************************************************************
4  * Copyright (C) 2002, 2006 the VideoLAN team
5  * $Id$
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <vlc_common.h>
34 #include <vlc_plugin.h>
35
36 #ifdef HAVE_UNISTD_H
37 #   include <unistd.h>
38 #endif
39
40 #include <vlc_aout.h>
41
42 /*****************************************************************************
43  * Local prototypes
44  *****************************************************************************/
45 static int  Create    ( vlc_object_t * );
46 static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
47                         aout_buffer_t * );
48
49 /*****************************************************************************
50  * Module descriptor
51  *****************************************************************************/
52 vlc_module_begin ()
53     set_category( CAT_AUDIO )
54     set_subcategory( SUBCAT_AUDIO_MISC )
55     set_description( N_("Audio filter for A/52->S/PDIF encapsulation") )
56     set_capability( "audio filter", 10 )
57     set_callbacks( Create, NULL )
58 vlc_module_end ()
59
60 /*****************************************************************************
61  * Create:
62  *****************************************************************************/
63 static int Create( vlc_object_t *p_this )
64 {
65     aout_filter_t * p_filter = (aout_filter_t *)p_this;
66
67     if ( p_filter->fmt_in.audio.i_format != VLC_CODEC_A52 ||
68          ( p_filter->fmt_out.audio.i_format != VLC_CODEC_SPDIFB &&
69            p_filter->fmt_out.audio.i_format != VLC_CODEC_SPDIFL ) )
70     {
71         return -1;
72     }
73
74     p_filter->pf_do_work = DoWork;
75     p_filter->b_in_place = 0;
76
77     return 0;
78 }
79
80 /*****************************************************************************
81  * DoWork: convert a buffer
82  *****************************************************************************/
83 static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
84                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
85 {
86     VLC_UNUSED(p_aout);
87     /* AC3 is natively big endian. Most SPDIF devices have the native
88      * endianness of the computer system.
89      * On Mac OS X however, little endian devices are also common.
90      */
91     static const uint8_t p_sync_le[6] = { 0x72, 0xF8, 0x1F, 0x4E, 0x01, 0x00 };
92     static const uint8_t p_sync_be[6] = { 0xF8, 0x72, 0x4E, 0x1F, 0x00, 0x01 };
93     uint16_t i_frame_size = p_in_buf->i_buffer / 2;
94     uint8_t * p_in = p_in_buf->p_buffer;
95     uint8_t * p_out = p_out_buf->p_buffer;
96
97     /* Copy the S/PDIF headers. */
98     if( p_filter->fmt_out.audio.i_format == VLC_CODEC_SPDIFB )
99     {
100         vlc_memcpy( p_out, p_sync_be, 6 );
101         p_out[4] = p_in[5] & 0x7; /* bsmod */
102         p_out[6] = (i_frame_size >> 4) & 0xff;
103         p_out[7] = (i_frame_size << 4) & 0xff;
104         vlc_memcpy( &p_out[8], p_in, i_frame_size * 2 );
105     }
106     else
107     {
108         vlc_memcpy( p_out, p_sync_le, 6 );
109         p_out[5] = p_in[5] & 0x7; /* bsmod */
110         p_out[6] = (i_frame_size << 4) & 0xff;
111         p_out[7] = (i_frame_size >> 4) & 0xff;
112         swab( p_in, &p_out[8], i_frame_size * 2 );
113     }
114     vlc_memset( p_out + 8 + i_frame_size * 2, 0,
115                 AOUT_SPDIF_SIZE - i_frame_size * 2 - 8 );
116
117     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
118     p_out_buf->i_buffer = AOUT_SPDIF_SIZE;
119 }
120