]> git.sesse.net Git - vlc/blob - modules/audio_filter/converter/dtstospdif.c
179b1aac9a675a7c0faf1e327ae536d1c7330c3e
[vlc] / modules / audio_filter / converter / dtstospdif.c
1 /*****************************************************************************
2  * dtstospdif.c : encapsulates DTS frames into S/PDIF packets
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id: dtstospdif.c,v 1.8 2004/02/15 21:52:59 gbazin Exp $
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                                      /* malloc(), free() */
28 #include <string.h>
29
30 #include <vlc/vlc.h>
31
32 #ifdef HAVE_UNISTD_H
33 #   include <unistd.h>
34 #endif
35
36 #include "audio_output.h"
37 #include "aout_internal.h"
38
39 /*****************************************************************************
40  * Local structures
41  *****************************************************************************/
42 struct aout_filter_sys_t
43 {
44     /* 3 DTS frames have to be packed into an S/PDIF frame.
45      * We accumulate DTS frames from the decoder until we have enough to
46      * send. */
47
48     uint8_t *p_buf;
49
50     mtime_t start_date;
51
52     int i_frames;
53     unsigned int i_frame_size;
54 };
55
56 /*****************************************************************************
57  * Local prototypes
58  *****************************************************************************/
59 static int  Create    ( vlc_object_t * );
60 static void Close     ( vlc_object_t * );
61 static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
62                         aout_buffer_t * );
63
64 /*****************************************************************************
65  * Module descriptor
66  *****************************************************************************/
67 vlc_module_begin();
68     set_description( _("audio filter for DTS->S/PDIF encapsulation") );
69     set_capability( "audio filter", 10 );
70     set_callbacks( Create, Close );
71 vlc_module_end();
72
73 /*****************************************************************************
74  * Create:
75  *****************************************************************************/
76 static int Create( vlc_object_t *p_this )
77 {
78     aout_filter_t * p_filter = (aout_filter_t *)p_this;
79
80     if ( p_filter->input.i_format != VLC_FOURCC('d','t','s',' ')
81           || p_filter->output.i_format != VLC_FOURCC('s','p','d','i') )
82     {
83         return -1;
84     }
85
86     /* Allocate the memory needed to store the module's structure */
87     p_filter->p_sys = malloc( sizeof(struct aout_filter_sys_t) );
88     if( p_filter->p_sys == NULL )
89     {
90         msg_Err( p_filter, "out of memory" );
91         return VLC_ENOMEM;
92     }
93     memset( p_filter->p_sys, 0, sizeof(struct aout_filter_sys_t) );
94     p_filter->p_sys->p_buf = 0;
95
96     p_filter->pf_do_work = DoWork;
97     p_filter->b_in_place = 1;
98
99     return 0;
100 }
101
102 /*****************************************************************************
103  * Close: free our resources
104  *****************************************************************************/
105 static void Close( vlc_object_t * p_this )
106 {
107     aout_filter_t * p_filter = (aout_filter_t *)p_this;
108     if( p_filter->p_sys->i_frame_size ) free( p_filter->p_sys->p_buf );
109     free( p_filter->p_sys );
110 }
111
112 /*****************************************************************************
113  * DoWork: convert a buffer
114  *****************************************************************************/
115 static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
116                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
117 {
118     uint16_t i_fz = p_in_buf->i_nb_samples * 4;
119     uint16_t i_frame, i_length = p_in_buf->i_nb_bytes;
120     static const uint8_t p_sync[6] = { 0x72, 0xF8, 0x1F, 0x4E, 0x00, 0x00 };
121
122     if( p_in_buf->i_nb_bytes != p_filter->p_sys->i_frame_size )
123     {
124         /* Frame size changed, reset everything */
125         p_filter->p_sys->i_frame_size = p_in_buf->i_nb_bytes;
126         p_filter->p_sys->p_buf = realloc( p_filter->p_sys->p_buf,
127                                           p_in_buf->i_nb_bytes * 3 );
128         p_filter->p_sys->i_frames = 0;
129     }
130
131     /* Backup frame */
132     p_filter->p_vlc->pf_memcpy( p_filter->p_sys->p_buf + p_in_buf->i_nb_bytes *
133                                 p_filter->p_sys->i_frames, p_in_buf->p_buffer,
134                                 p_in_buf->i_nb_bytes );
135
136     p_filter->p_sys->i_frames++;
137
138     if( p_filter->p_sys->i_frames < 3 )
139     {
140         if( !p_filter->p_sys->i_frames )
141             /* We'll need the starting date */
142             p_filter->p_sys->start_date = p_in_buf->start_date;
143
144         /* Not enough data */
145         p_out_buf->i_nb_samples = 0;
146         p_out_buf->i_nb_bytes = 0;
147         return;
148     }
149
150     p_filter->p_sys->i_frames = 0;
151
152     for( i_frame = 0; i_frame < 3; i_frame++ )
153     {
154         byte_t * p_out = p_out_buf->p_buffer + (i_frame * i_fz);
155         byte_t * p_in = p_filter->p_sys->p_buf + (i_frame * i_length);
156
157         /* Copy the S/PDIF headers. */
158         memcpy( p_out, p_sync, 6 );
159
160         switch( p_in_buf->i_nb_samples )
161         {
162             case  512: *(p_out + 4) = 0x0B; break;
163             case 1024: *(p_out + 4) = 0x0C; break;
164             case 2048: *(p_out + 4) = 0x0D; break;
165         }
166
167         *(p_out + 6) = (i_length * 8) & 0xff;
168         *(p_out + 7) = (i_length * 8) >> 8;
169
170         if( p_in[0] == 0x1f || p_in[0] == 0x7f )
171         {
172             /* We are dealing with a big endian bitstream.
173              * Convert to little endian */
174 #ifdef HAVE_SWAB
175             swab( p_in, p_out + 8, i_length );
176 #else
177             uint16_t i;
178             byte_t * p_tmp, tmp;
179             p_tmp = p_out + 8;
180             for( i = i_length / 2 ; i-- ; )
181             {
182                 tmp = p_in[0]; /* in-place filter */
183                 p_tmp[0] = p_in[1];
184                 p_tmp[1] = tmp;
185                 p_tmp += 2; p_in += 2;
186             }
187 #endif
188         }
189         else
190         {
191             /* Little endian */
192             memcpy( p_out + 8, p_in, i_length );
193         }
194
195         if( i_fz > i_length + 8 )
196         {
197             p_filter->p_vlc->pf_memset( p_out + 8 + i_length, 0,
198                                         i_fz - i_length - 8 );
199         }
200     }
201
202     p_out_buf->start_date = p_filter->p_sys->start_date;
203     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples * 3;
204     p_out_buf->i_nb_bytes = p_out_buf->i_nb_samples * 4;
205 }