]> git.sesse.net Git - vlc/blob - modules/demux/aiff.c
mediacodec: don't loop in GetOutput
[vlc] / modules / demux / aiff.c
1 /*****************************************************************************
2  * aiff.c: Audio Interchange File Format demuxer
3  *****************************************************************************
4  * Copyright (C) 2004-2007 VLC authors and VideoLAN
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU Lesser General Public License as published by
11  * the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public License
20  * along with this program; if not, write to the Free Software Foundation,
21  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc_common.h>
33 #include <vlc_plugin.h>
34 #include <vlc_demux.h>
35
36 /* TODO:
37  *  - ...
38  */
39
40 /*****************************************************************************
41  * Module descriptor
42  *****************************************************************************/
43 static int  Open    ( vlc_object_t * );
44 static void Close  ( vlc_object_t * );
45
46 vlc_module_begin ()
47     set_category( CAT_INPUT )
48     set_subcategory( SUBCAT_INPUT_DEMUX )
49     set_description( N_("AIFF demuxer" ) )
50     set_capability( "demux", 10 )
51     set_callbacks( Open, Close )
52     add_shortcut( "aiff" )
53 vlc_module_end ()
54
55 /*****************************************************************************
56  * Local prototypes
57  *****************************************************************************/
58
59 struct demux_sys_t
60 {
61     es_format_t  fmt;
62     es_out_id_t *es;
63
64     int64_t     i_ssnd_pos;
65     int64_t     i_ssnd_size;
66     int         i_ssnd_offset;
67     int         i_ssnd_blocksize;
68
69     /* real data start */
70     int64_t     i_ssnd_start;
71     int64_t     i_ssnd_end;
72
73     int         i_ssnd_fsize;
74
75     int64_t     i_time;
76 };
77
78 static int Demux  ( demux_t *p_demux );
79 static int Control( demux_t *p_demux, int i_query, va_list args );
80
81 /* GetF80BE: read a 80 bits float in big endian */
82 static unsigned int GetF80BE( const uint8_t p[10] )
83 {
84     unsigned int i_mantissa = GetDWBE( &p[2] );
85     int          i_exp = 30 - p[1];
86     unsigned int i_last = 0;
87
88     while( i_exp-- > 0 )
89     {
90         i_last = i_mantissa;
91         i_mantissa >>= 1;
92     }
93     if( i_last&0x01 )
94     {
95         i_mantissa++;
96     }
97     return i_mantissa;
98 }
99
100 /*****************************************************************************
101  * Open
102  *****************************************************************************/
103 static int Open( vlc_object_t *p_this )
104 {
105     demux_t     *p_demux = (demux_t*)p_this;
106     demux_sys_t *p_sys;
107
108     const uint8_t *p_peek;
109
110     if( stream_Peek( p_demux->s, &p_peek, 12 ) < 12 )
111         return VLC_EGENERIC;
112     if( memcmp( p_peek, "FORM", 4 ) || memcmp( &p_peek[8], "AIFF", 4 ) )
113         return VLC_EGENERIC;
114
115     /* skip aiff header */
116     stream_Read( p_demux->s, NULL, 12 );
117
118     /* Fill p_demux field */
119     DEMUX_INIT_COMMON(); p_sys = p_demux->p_sys;
120     es_format_Init( &p_sys->fmt, UNKNOWN_ES, 0 );
121     p_sys->i_time = 0;
122     p_sys->i_ssnd_pos = -1;
123
124     for( ;; )
125     {
126         uint32_t i_size;
127
128         if( stream_Peek( p_demux->s, &p_peek, 8 ) < 8 )
129             goto error;
130
131         i_size = GetDWBE( &p_peek[4] );
132
133         msg_Dbg( p_demux, "chunk fcc=%4.4s size=%d", p_peek, i_size );
134
135         if( !memcmp( p_peek, "COMM", 4 ) )
136         {
137             if( stream_Peek( p_demux->s, &p_peek, 18+8 ) < 18+8 )
138                 goto error;
139
140             es_format_Init( &p_sys->fmt, AUDIO_ES, VLC_FOURCC( 't', 'w', 'o', 's' ) );
141             p_sys->fmt.audio.i_channels = GetWBE( &p_peek[8] );
142             p_sys->fmt.audio.i_bitspersample = GetWBE( &p_peek[14] );
143             p_sys->fmt.audio.i_rate     = GetF80BE( &p_peek[16] );
144
145             msg_Dbg( p_demux, "COMM: channels=%d samples_frames=%d bits=%d rate=%d",
146                      GetWBE( &p_peek[8] ), GetDWBE( &p_peek[10] ), GetWBE( &p_peek[14] ),
147                      GetF80BE( &p_peek[16] ) );
148         }
149         else if( !memcmp( p_peek, "SSND", 4 ) )
150         {
151             if( stream_Peek( p_demux->s, &p_peek, 8+8 ) < 8+8 )
152                 goto error;
153
154             p_sys->i_ssnd_pos = stream_Tell( p_demux->s );
155             p_sys->i_ssnd_size = i_size;
156             p_sys->i_ssnd_offset = GetDWBE( &p_peek[8] );
157             p_sys->i_ssnd_blocksize = GetDWBE( &p_peek[12] );
158
159             msg_Dbg( p_demux, "SSND: (offset=%d blocksize=%d)",
160                      p_sys->i_ssnd_offset, p_sys->i_ssnd_blocksize );
161         }
162         if( p_sys->i_ssnd_pos >= 12 && p_sys->fmt.i_cat == AUDIO_ES )
163         {
164             /* We have found the 2 needed chunks */
165             break;
166         }
167
168         /* Skip this chunk */
169         i_size += 8;
170         if( (i_size % 2) != 0 )
171             i_size++;
172         if( stream_Read( p_demux->s, NULL, i_size ) != (int)i_size )
173         {
174             msg_Warn( p_demux, "incomplete file" );
175             goto error;
176         }
177     }
178
179     p_sys->i_ssnd_start = p_sys->i_ssnd_pos + 16 + p_sys->i_ssnd_offset;
180     p_sys->i_ssnd_end   = p_sys->i_ssnd_start + p_sys->i_ssnd_size;
181
182     p_sys->i_ssnd_fsize = p_sys->fmt.audio.i_channels *
183                           ((p_sys->fmt.audio.i_bitspersample + 7) / 8);
184
185     if( p_sys->i_ssnd_fsize <= 0 || p_sys->fmt.audio.i_rate == 0 )
186     {
187         msg_Err( p_demux, "invalid audio parameters" );
188         goto error;
189     }
190
191     if( p_sys->i_ssnd_size <= 0 )
192     {
193         /* unknown */
194         p_sys->i_ssnd_end = 0;
195     }
196
197     /* seek into SSND chunk */
198     if( stream_Seek( p_demux->s, p_sys->i_ssnd_start ) )
199     {
200         msg_Err( p_demux, "cannot seek to data chunk" );
201         goto error;
202     }
203
204     /* */
205     p_sys->es = es_out_Add( p_demux->out, &p_sys->fmt );
206
207     return VLC_SUCCESS;
208
209 error:
210     free( p_sys );
211     return VLC_EGENERIC;
212 }
213
214 /*****************************************************************************
215  * Close
216  *****************************************************************************/
217 static void Close( vlc_object_t *p_this )
218 {
219     demux_t     *p_demux = (demux_t*)p_this;
220     demux_sys_t *p_sys = p_demux->p_sys;
221
222     free( p_sys );
223 }
224
225
226 /*****************************************************************************
227  * Demux:
228  *****************************************************************************/
229 static int Demux( demux_t *p_demux )
230 {
231     demux_sys_t *p_sys = p_demux->p_sys;
232     int64_t     i_tell = stream_Tell( p_demux->s );
233
234     block_t     *p_block;
235     int         i_read;
236
237     if( p_sys->i_ssnd_end > 0 && i_tell >= p_sys->i_ssnd_end )
238     {
239         /* EOF */
240         return 0;
241     }
242
243     /* Set PCR */
244     es_out_Control( p_demux->out, ES_OUT_SET_PCR, VLC_TS_0 + p_sys->i_time);
245
246     /* we will read 100ms at once */
247     i_read = p_sys->i_ssnd_fsize * ( p_sys->fmt.audio.i_rate / 10 );
248     if( p_sys->i_ssnd_end > 0 && p_sys->i_ssnd_end - i_tell < i_read )
249     {
250         i_read = p_sys->i_ssnd_end - i_tell;
251     }
252     if( ( p_block = stream_Block( p_demux->s, i_read ) ) == NULL )
253     {
254         return 0;
255     }
256
257     p_block->i_dts =
258     p_block->i_pts = VLC_TS_0 + p_sys->i_time;
259
260     p_sys->i_time += (int64_t)1000000 *
261                      p_block->i_buffer /
262                      p_sys->i_ssnd_fsize /
263                      p_sys->fmt.audio.i_rate;
264
265     /* */
266     es_out_Send( p_demux->out, p_sys->es, p_block );
267     return 1;
268 }
269
270 /*****************************************************************************
271  * Control:
272  *****************************************************************************/
273 static int Control( demux_t *p_demux, int i_query, va_list args )
274 {
275     demux_sys_t *p_sys = p_demux->p_sys;
276     double f, *pf;
277     int64_t *pi64;
278
279     switch( i_query )
280     {
281         case DEMUX_GET_POSITION:
282         {
283             int64_t i_start = p_sys->i_ssnd_start;
284             int64_t i_end   = p_sys->i_ssnd_end > 0 ? p_sys->i_ssnd_end : stream_Size( p_demux->s );
285             int64_t i_tell  = stream_Tell( p_demux->s );
286
287             pf = (double*) va_arg( args, double* );
288
289             if( i_start < i_end )
290             {
291                 *pf = (double)(i_tell - i_start)/(double)(i_end - i_start);
292                 return VLC_SUCCESS;
293             }
294             return VLC_EGENERIC;
295         }
296
297         case DEMUX_SET_POSITION:
298         {
299             int64_t i_start = p_sys->i_ssnd_start;
300             int64_t i_end  = p_sys->i_ssnd_end > 0 ? p_sys->i_ssnd_end : stream_Size( p_demux->s );
301
302             f = (double) va_arg( args, double );
303
304             if( i_start < i_end )
305             {
306                 int     i_frame = (f * ( i_end - i_start )) / p_sys->i_ssnd_fsize;
307                 int64_t i_new   = i_start + i_frame * p_sys->i_ssnd_fsize;
308
309                 if( stream_Seek( p_demux->s, i_new ) )
310                 {
311                     return VLC_EGENERIC;
312                 }
313                 p_sys->i_time = (int64_t)1000000 * i_frame / p_sys->fmt.audio.i_rate;
314                 return VLC_SUCCESS;
315             }
316             return VLC_EGENERIC;
317         }
318
319         case DEMUX_GET_TIME:
320             pi64 = (int64_t*)va_arg( args, int64_t * );
321             *pi64 = p_sys->i_time;
322             return VLC_SUCCESS;
323
324         case DEMUX_GET_LENGTH:
325         {
326             int64_t i_end  = p_sys->i_ssnd_end > 0 ? p_sys->i_ssnd_end : stream_Size( p_demux->s );
327
328             pi64 = (int64_t*)va_arg( args, int64_t * );
329             if( p_sys->i_ssnd_start < i_end )
330             {
331                 *pi64 = (int64_t)1000000 * ( i_end - p_sys->i_ssnd_start ) / p_sys->i_ssnd_fsize / p_sys->fmt.audio.i_rate;
332                 return VLC_SUCCESS;
333             }
334             return VLC_EGENERIC;
335         }
336         case DEMUX_SET_TIME:
337         case DEMUX_GET_FPS:
338         default:
339             return VLC_EGENERIC;
340     }
341 }