]> git.sesse.net Git - vlc/blob - modules/audio_filter/converter/dtstospdif.c
Don't include config.h from the headers - refs #297.
[vlc] / modules / audio_filter / converter / dtstospdif.c
1 /*****************************************************************************
2  * dtstospdif.c : encapsulates DTS frames into S/PDIF packets
3  *****************************************************************************
4  * Copyright (C) 2003, 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc/vlc.h>
32
33
34 #ifdef HAVE_UNISTD_H
35 #   include <unistd.h>
36 #endif
37
38 #include <vlc_aout.h>
39
40 /*****************************************************************************
41  * Local structures
42  *****************************************************************************/
43 struct aout_filter_sys_t
44 {
45     /* 3 DTS frames have to be packed into an S/PDIF frame.
46      * We accumulate DTS frames from the decoder until we have enough to
47      * send. */
48
49     uint8_t *p_buf;
50
51     mtime_t start_date;
52
53     int i_frames;
54     unsigned int i_frame_size;
55 };
56
57 /*****************************************************************************
58  * Local prototypes
59  *****************************************************************************/
60 static int  Create    ( vlc_object_t * );
61 static void Close     ( vlc_object_t * );
62 static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
63                         aout_buffer_t * );
64
65 /*****************************************************************************
66  * Module descriptor
67  *****************************************************************************/
68 vlc_module_begin();
69     set_category( CAT_AUDIO );
70     set_subcategory( SUBCAT_AUDIO_MISC );
71     set_description( _("Audio filter for DTS->S/PDIF encapsulation") );
72     set_capability( "audio filter", 10 );
73     set_callbacks( Create, Close );
74 vlc_module_end();
75
76 /*****************************************************************************
77  * Create:
78  *****************************************************************************/
79 static int Create( vlc_object_t *p_this )
80 {
81     aout_filter_t * p_filter = (aout_filter_t *)p_this;
82
83     if( p_filter->input.i_format != VLC_FOURCC('d','t','s',' ') ||
84         ( p_filter->output.i_format != VLC_FOURCC('s','p','d','i') &&
85           p_filter->output.i_format != VLC_FOURCC('s','p','d','b') ) )
86     {
87         return -1;
88     }
89
90     /* Allocate the memory needed to store the module's structure */
91     p_filter->p_sys = malloc( sizeof(struct aout_filter_sys_t) );
92     if( p_filter->p_sys == NULL )
93     {
94         msg_Err( p_filter, "out of memory" );
95         return VLC_ENOMEM;
96     }
97     memset( p_filter->p_sys, 0, sizeof(struct aout_filter_sys_t) );
98     p_filter->p_sys->p_buf = 0;
99
100     p_filter->pf_do_work = DoWork;
101     p_filter->b_in_place = 1;
102
103     return 0;
104 }
105
106 /*****************************************************************************
107  * Close: free our resources
108  *****************************************************************************/
109 static void Close( vlc_object_t * p_this )
110 {
111     aout_filter_t * p_filter = (aout_filter_t *)p_this;
112     if( p_filter->p_sys->i_frame_size ) free( p_filter->p_sys->p_buf );
113     free( p_filter->p_sys );
114 }
115
116 /*****************************************************************************
117  * DoWork: convert a buffer
118  *****************************************************************************/
119 static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
120                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
121 {
122     uint32_t i_ac5_spdif_type = 0;
123     uint16_t i_fz = p_in_buf->i_nb_samples * 4;
124     uint16_t i_frame, i_length = p_in_buf->i_nb_bytes;
125     static const uint8_t p_sync_le[6] = { 0x72, 0xF8, 0x1F, 0x4E, 0x00, 0x00 };
126     static const uint8_t p_sync_be[6] = { 0xF8, 0x72, 0x4E, 0x1F, 0x00, 0x00 };
127
128     if( p_in_buf->i_nb_bytes != p_filter->p_sys->i_frame_size )
129     {
130         /* Frame size changed, reset everything */
131         msg_Warn( p_aout, "Frame size changed from %d to %d, resetting everything.",
132                           p_filter->p_sys->i_frame_size, p_in_buf->i_nb_bytes );
133
134         p_filter->p_sys->i_frame_size = p_in_buf->i_nb_bytes;
135         p_filter->p_sys->p_buf = realloc( p_filter->p_sys->p_buf,
136                                           p_in_buf->i_nb_bytes * 3 );
137         p_filter->p_sys->i_frames = 0;
138     }
139
140     /* Backup frame */
141     p_filter->p_libvlc->pf_memcpy( p_filter->p_sys->p_buf + p_in_buf->i_nb_bytes *
142                                 p_filter->p_sys->i_frames, p_in_buf->p_buffer,
143                                 p_in_buf->i_nb_bytes );
144
145     p_filter->p_sys->i_frames++;
146
147     if( p_filter->p_sys->i_frames < 3 )
148     {
149         if( p_filter->p_sys->i_frames == 1 )
150             /* We'll need the starting date */
151             p_filter->p_sys->start_date = p_in_buf->start_date;
152
153         /* Not enough data */
154         p_out_buf->i_nb_samples = 0;
155         p_out_buf->i_nb_bytes = 0;
156         return;
157     }
158
159     p_filter->p_sys->i_frames = 0;
160
161     for( i_frame = 0; i_frame < 3; i_frame++ )
162     {
163         uint16_t i_length_padded = i_length;
164         byte_t * p_out = p_out_buf->p_buffer + (i_frame * i_fz);
165         byte_t * p_in = p_filter->p_sys->p_buf + (i_frame * i_length);
166
167         switch( p_in_buf->i_nb_samples )
168         {
169             case  512: i_ac5_spdif_type = 0x0B; break;
170             case 1024: i_ac5_spdif_type = 0x0C; break;
171             case 2048: i_ac5_spdif_type = 0x0D; break;
172         }
173
174         /* Copy the S/PDIF headers. */
175         if( p_filter->output.i_format == VLC_FOURCC('s','p','d','b') )
176         {
177             p_filter->p_libvlc->pf_memcpy( p_out, p_sync_be, 6 );
178             p_out[5] = i_ac5_spdif_type;
179             p_out[6] = (( i_length ) >> 5 ) & 0xFF;
180             p_out[7] = ( i_length << 3 ) & 0xFF;
181         }
182         else
183         {
184             p_filter->p_libvlc->pf_memcpy( p_out, p_sync_le, 6 );
185             p_out[4] = i_ac5_spdif_type;
186             p_out[6] = ( i_length << 3 ) & 0xFF;
187             p_out[7] = (( i_length ) >> 5 ) & 0xFF;
188         }
189
190         if( ( (p_in[0] == 0x1F || p_in[0] == 0x7F) && p_filter->output.i_format == VLC_FOURCC('s','p','d','i') ) ||
191             ( (p_in[0] == 0xFF || p_in[0] == 0xFE) && p_filter->output.i_format == VLC_FOURCC('s','p','d','b') ) )
192         {
193             /* We are dealing with a big endian bitstream and a little endian output
194              * or a little endian bitstream and a big endian output.
195              * Byteswap the stream */
196 #ifdef HAVE_SWAB
197             swab( p_in, p_out + 8, i_length );
198 #else
199             uint16_t i;
200             byte_t * p_tmp, tmp;
201             p_tmp = p_out + 8;
202             for( i = i_length / 2 ; i-- ; )
203             {
204                 tmp = p_in[0]; /* in-place filter */
205                 p_tmp[0] = p_in[1];
206                 p_tmp[1] = tmp;
207                 p_tmp += 2; p_in += 2;
208             }
209 #endif
210             /* If i_length is odd, we have to adjust swapping a bit.. */
211             if( i_length & 1 )
212             {
213                 p_out[8+i_length-1] = 0;
214                 p_out[8+i_length] = p_in[i_length-1];
215                 i_length_padded++;
216             }
217         }
218         else
219         {
220             p_filter->p_libvlc->pf_memcpy( p_out + 8, p_in, i_length );
221         }
222
223         if( i_fz > i_length + 8 )
224         {
225             p_filter->p_libvlc->pf_memset( p_out + 8 + i_length_padded, 0,
226                                         i_fz - i_length_padded - 8 );
227         }
228     }
229
230     p_out_buf->start_date = p_filter->p_sys->start_date;
231     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples * 3;
232     p_out_buf->i_nb_bytes = p_out_buf->i_nb_samples * 4;
233 }