]> git.sesse.net Git - vlc/blob - modules/audio_filter/converter/dtstospdif.c
* modules/audio_filter/converter/dtstospdif.c: oops forgot something.
[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.3 2004/02/04 23:03:36 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     int i_frames;
51     unsigned int i_frame_size;
52 };
53
54 /*****************************************************************************
55  * Local prototypes
56  *****************************************************************************/
57 static int  Create    ( vlc_object_t * );
58 static void Close     ( vlc_object_t * );
59 static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
60                         aout_buffer_t * );
61
62 /*****************************************************************************
63  * Module descriptor
64  *****************************************************************************/
65 vlc_module_begin();
66     set_description( _("audio filter for DTS->S/PDIF encapsulation") );
67     set_capability( "audio filter", 10 );
68     set_callbacks( Create, Close );
69 vlc_module_end();
70
71 /*****************************************************************************
72  * Create:
73  *****************************************************************************/
74 static int Create( vlc_object_t *p_this )
75 {
76     aout_filter_t * p_filter = (aout_filter_t *)p_this;
77
78     if ( p_filter->input.i_format != VLC_FOURCC('d','t','s',' ')
79           || p_filter->output.i_format != VLC_FOURCC('s','p','d','i') )
80     {
81         return -1;
82     }
83
84     /* Allocate the memory needed to store the module's structure */
85     p_filter->p_sys = malloc( sizeof(struct aout_filter_sys_t) );
86     if( p_filter->p_sys == NULL )
87     {
88         msg_Err( p_filter, "out of memory" );
89         return VLC_ENOMEM;
90     }
91     memset( p_filter->p_sys, 0, sizeof(struct aout_filter_sys_t) );
92     p_filter->p_sys->p_buf = 0;
93
94     p_filter->pf_do_work = DoWork;
95     p_filter->b_in_place = 1;
96
97     return 0;
98 }
99
100 /*****************************************************************************
101  * Close: free our resources
102  *****************************************************************************/
103 static void Close( vlc_object_t * p_this )
104 {
105     aout_filter_t * p_filter = (aout_filter_t *)p_this;
106     if( p_filter->p_sys->i_frame_size ) free( p_filter->p_sys->p_buf );
107     free( p_filter->p_sys );
108 }
109
110 /*****************************************************************************
111  * DoWork: convert a buffer
112  *****************************************************************************/
113 static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
114                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
115 {
116     uint16_t i_fz = p_in_buf->i_nb_samples * 4;
117     uint16_t i_frame, i_length = p_in_buf->i_nb_bytes;
118     static const uint8_t p_sync[6] = { 0x72, 0xF8, 0x1F, 0x4E, 0x00, 0x00 };
119
120     if( p_in_buf->i_nb_bytes != p_filter->p_sys->i_frame_size )
121     {
122         /* Frame size changed, reset everything */
123         p_filter->p_sys->i_frame_size = p_in_buf->i_nb_bytes;
124         p_filter->p_sys->p_buf = realloc( p_filter->p_sys->p_buf,
125                                           p_in_buf->i_nb_bytes * 3 );
126         p_filter->p_sys->i_frames = 0;
127     }
128
129     /* Backup frame */
130     p_filter->p_vlc->pf_memcpy( p_filter->p_sys->p_buf + p_in_buf->i_nb_bytes *
131                                 p_filter->p_sys->i_frames, p_in_buf->p_buffer,
132                                 p_in_buf->i_nb_bytes );
133
134     p_filter->p_sys->i_frames++;
135
136     if( p_filter->p_sys->i_frames < 3 )
137     {
138         /* Not enough data */
139         p_out_buf->i_nb_samples = 0;
140         p_out_buf->i_nb_bytes = 0;
141         return;
142     }
143
144     p_filter->p_sys->i_frames = 0;
145
146     for( i_frame = 0; i_frame < 3; i_frame++ )
147     {
148 #ifndef HAVE_SWAB
149         uint16_t i;
150         byte_t * p_tmp;
151 #endif
152         byte_t * p_out = p_out_buf->p_buffer + (i_frame * i_fz);
153         byte_t * p_in = p_filter->p_sys->p_buf + (i_frame * i_length);
154
155         /* Copy the S/PDIF headers. */
156         memcpy( p_out, p_sync, 6 );
157
158         switch( p_in_buf->i_nb_samples )
159         {
160             case  512: *(p_out + 4) = 0x0B; break;
161             case 1024: *(p_out + 4) = 0x0C; break;
162             case 2048: *(p_out + 4) = 0x0D; break;
163         }
164
165         *(p_out + 6) = (i_length * 8) & 0xff;
166         *(p_out + 7) = (i_length * 8) >> 8;
167
168 #ifdef HAVE_SWAB
169         swab( p_in, p_out + 8, i_length );
170 #else
171         p_tmp = p_out + 8;
172         for( i = i_length / 2 ; i-- ; )
173         {
174             p_tmp[0] = p_in[1];
175             p_tmp[1] = p_in[0];
176             p_tmp += 2; p_in += 2;
177         }
178 #endif
179
180         p_filter->p_vlc->pf_memset( p_out + 8 + i_length, 0,
181                                     i_fz - i_length - 8 );
182     }
183
184     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples * 3;
185     p_out_buf->i_nb_bytes = p_out_buf->i_nb_samples * 4;
186 }