]> git.sesse.net Git - vlc/blob - modules/audio_filter/converter/a52tospdif.c
For consistency, remove references to vlc from libvlc
[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 #include <vlc/vlc.h>
30
31 #include <stdlib.h>                                      /* malloc(), free() */
32 #include <string.h>
33 #ifdef HAVE_UNISTD_H
34 #   include <unistd.h>
35 #endif
36
37 #include "audio_output.h"
38 #include "aout_internal.h"
39
40 /*****************************************************************************
41  * Local prototypes
42  *****************************************************************************/
43 static int  Create    ( vlc_object_t * );
44 static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
45                         aout_buffer_t * );
46
47 /*****************************************************************************
48  * Module descriptor
49  *****************************************************************************/
50 vlc_module_begin();
51     set_category( CAT_AUDIO );
52     set_subcategory( SUBCAT_AUDIO_MISC );
53     set_description( _("Audio filter for A/52->S/PDIF encapsulation") );
54     set_capability( "audio filter", 10 );
55     set_callbacks( Create, NULL );
56 vlc_module_end();
57
58 /*****************************************************************************
59  * Create:
60  *****************************************************************************/
61 static int Create( vlc_object_t *p_this )
62 {
63     aout_filter_t * p_filter = (aout_filter_t *)p_this;
64
65     if ( p_filter->input.i_format != VLC_FOURCC('a','5','2',' ') ||
66          ( p_filter->output.i_format != VLC_FOURCC('s','p','d','b') &&
67            p_filter->output.i_format != VLC_FOURCC('s','p','d','i') ) )
68     {
69         return -1;
70     }
71
72     p_filter->pf_do_work = DoWork;
73     p_filter->b_in_place = 0;
74
75     return 0;
76 }
77
78 /*****************************************************************************
79  * DoWork: convert a buffer
80  *****************************************************************************/
81 static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
82                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
83 {
84     /* AC3 is natively big endian. Most SPDIF devices have the native
85      * endianness of the computer system.
86      * On Mac OS X however, little endian devices are also common.
87      */
88     static const uint8_t p_sync_le[6] = { 0x72, 0xF8, 0x1F, 0x4E, 0x01, 0x00 };
89     static const uint8_t p_sync_be[6] = { 0xF8, 0x72, 0x4E, 0x1F, 0x00, 0x01 };
90 #ifndef HAVE_SWAB
91     byte_t * p_tmp;
92     uint16_t i;
93 #endif
94     uint16_t i_frame_size = p_in_buf->i_nb_bytes / 2;
95     byte_t * p_in = p_in_buf->p_buffer;
96     byte_t * p_out = p_out_buf->p_buffer;
97
98     /* Copy the S/PDIF headers. */
99     if( p_filter->output.i_format == VLC_FOURCC('s','p','d','b') )
100     {
101         p_filter->p_libvlc->pf_memcpy( p_out, p_sync_be, 6 );
102         p_out[4] = p_in[5] & 0x7; /* bsmod */
103         p_out[6] = (i_frame_size >> 4) & 0xff;
104         p_out[7] = (i_frame_size << 4) & 0xff;
105         p_filter->p_libvlc->pf_memcpy( &p_out[8], p_in, i_frame_size * 2 );
106     }
107     else
108     {
109         p_filter->p_libvlc->pf_memcpy( p_out, p_sync_le, 6 );
110         p_out[5] = p_in[5] & 0x7; /* bsmod */
111         p_out[6] = (i_frame_size << 4) & 0xff;
112         p_out[7] = (i_frame_size >> 4) & 0xff;
113 #ifdef HAVE_SWAB
114         swab( p_in, &p_out[8], i_frame_size * 2 );
115 #else
116         p_tmp = &p_out[8];
117         for( i = i_frame_size; i-- ; )
118         {
119             p_tmp[0] = p_in[1];
120             p_tmp[1] = p_in[0];
121             p_tmp += 2; p_in += 2;
122         }
123 #endif
124     }
125     p_filter->p_libvlc->pf_memset( p_out + 8 + i_frame_size * 2, 0,
126                                 AOUT_SPDIF_SIZE - i_frame_size * 2 - 8 );
127
128     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
129     p_out_buf->i_nb_bytes = AOUT_SPDIF_SIZE;
130 }
131