]> git.sesse.net Git - vlc/blob - src/input/demux.c
Uuinline functions and hide stream_t (it's not used in any module anyway)
[vlc] / src / input / demux.c
1 /*****************************************************************************
2  * demux.c
3  *****************************************************************************
4  * Copyright (C) 1999-2004 the VideoLAN team
5  * $Id$
6  *
7  * Author: Laurent Aimar <fenrir@via.ecp.fr>
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 #include <stdlib.h>
25 #include <vlc/vlc.h>
26
27 #include "input_internal.h"
28
29 static void SkipID3Tag( demux_t * );
30
31 /*****************************************************************************
32  * demux2_New:
33  *  if s is NULL then load a access_demux
34  *****************************************************************************/
35 demux_t *__demux2_New( vlc_object_t *p_obj,
36                        const char *psz_access, const char *psz_demux,
37                        const char *psz_path,
38                        stream_t *s, es_out_t *out, vlc_bool_t b_quick )
39 {
40     demux_t *p_demux = vlc_object_create( p_obj, VLC_OBJECT_DEMUX );
41     const char *psz_module;
42
43     if( p_demux == NULL ) return NULL;
44
45     /* Parse URL */
46     p_demux->psz_access = strdup( psz_access );
47     p_demux->psz_demux  = strdup( psz_demux );
48     p_demux->psz_path   = strdup( psz_path );
49
50     /* Take into account "demux" to be able to do :demux=dump */
51     if( *p_demux->psz_demux == '\0' )
52     {
53         free( p_demux->psz_demux );
54         p_demux->psz_demux = var_GetString( p_obj, "demux" );
55     }
56
57     if( !b_quick )
58     {
59         msg_Dbg( p_obj, "creating demux: access='%s' demux='%s' path='%s'",
60                  p_demux->psz_access, p_demux->psz_demux, p_demux->psz_path );
61     }
62
63     p_demux->s          = s;
64     p_demux->out        = out;
65
66     p_demux->pf_demux   = NULL;
67     p_demux->pf_control = NULL;
68     p_demux->p_sys      = NULL;
69     p_demux->info.i_update = 0;
70     p_demux->info.i_title  = 0;
71     p_demux->info.i_seekpoint = 0;
72
73     if( s ) psz_module = p_demux->psz_demux;
74     else psz_module = p_demux->psz_access;
75
76     if( s && *psz_module == '\0' && strrchr( p_demux->psz_path, '.' ) )
77     {
78        /* XXX: add only file without any problem here and with strong detection.
79         *  - no .mp3, .a52, ... (aac is added as it works only by file ext
80         *     anyway
81         *  - wav can't be added 'cause of a52 and dts in them as raw audio
82          */
83          static const struct { char ext[5]; char demux[9]; } exttodemux[] =
84          {
85             { "aac",  "aac" },
86             { "aiff", "aiff" },
87             { "asf",  "asf" }, { "wmv",  "asf" }, { "wma",  "asf" },
88             { "avi",  "avi" },
89             { "au",   "au" },
90             { "flac", "flac" },
91             { "dv",   "dv" },
92             { "m3u",  "playlist" },
93             { "mkv",  "mkv" }, { "mka",  "mkv" }, { "mks",  "mkv" },
94             { "mp4",  "mp4" }, { "m4a",  "mp4" }, { "mov",  "mp4" }, { "moov", "mp4" },
95             { "mod",  "mod" }, { "xm",   "mod" },
96             { "nsv",  "nsv" },
97             { "ogg",  "ogg" }, { "ogm",  "ogg" },
98             { "pva",  "pva" },
99             { "rm",   "rm" },
100             { "m4v",  "m4v" },
101             { "h264",  "h264" },
102             { "",  "" },
103         };
104         /* Here, we don't mind if it does not work, it must be quick */
105         static const struct { char ext[4]; char demux[5]; } exttodemux_quick[] =
106         {
107             { "mp3", "mpga" },
108             { "ogg", "ogg" },
109             { "wma", "asf" },
110             { "", "" }
111         };
112
113         const char *psz_ext = strrchr( p_demux->psz_path, '.' ) + 1;
114         int  i;
115
116         if( !b_quick )
117         {
118             for( i = 0; exttodemux[i].ext[0]; i++ )
119             {
120                 if( !strcasecmp( psz_ext, exttodemux[i].ext ) )
121                 {
122                     psz_module = exttodemux[i].demux;
123                     break;
124                 }
125             }
126         }
127         else
128         {
129             for( i = 0; exttodemux_quick[i].ext[0]; i++ )
130             {
131                 if( !strcasecmp( psz_ext, exttodemux_quick[i].ext ) )
132                 {
133                     psz_module = exttodemux_quick[i].demux;
134                     break;
135                 }
136             }
137
138         }
139     }
140
141     /* Before module_Need (for var_Create...) */
142     vlc_object_attach( p_demux, p_obj );
143
144     if( s )
145     {
146         /* ID3 tags will mess-up demuxer probing so we skip it here.
147          * ID3 parsers will called later on in the demuxer to access the
148          * skipped info. */
149         SkipID3Tag( p_demux );
150
151         p_demux->p_module =
152             module_Need( p_demux, "demux2", psz_module,
153                          !strcmp( psz_module, p_demux->psz_demux ) ?
154                          VLC_TRUE : VLC_FALSE );
155     }
156     else
157     {
158         p_demux->p_module =
159             module_Need( p_demux, "access_demux", psz_module,
160                          !strcmp( psz_module, p_demux->psz_access ) ?
161                          VLC_TRUE : VLC_FALSE );
162     }
163
164     if( p_demux->p_module == NULL )
165     {
166         vlc_object_detach( p_demux );
167         free( p_demux->psz_path );
168         free( p_demux->psz_demux );
169         free( p_demux->psz_access );
170         vlc_object_destroy( p_demux );
171         return NULL;
172     }
173
174     return p_demux;
175 }
176
177 /*****************************************************************************
178  * demux2_Delete:
179  *****************************************************************************/
180 void demux2_Delete( demux_t *p_demux )
181 {
182     module_Unneed( p_demux, p_demux->p_module );
183     vlc_object_detach( p_demux );
184
185     free( p_demux->psz_path );
186     free( p_demux->psz_demux );
187     free( p_demux->psz_access );
188
189     vlc_object_destroy( p_demux );
190 }
191
192 /*****************************************************************************
193  * demux2_vaControlHelper:
194  *****************************************************************************/
195 int demux2_vaControlHelper( stream_t *s,
196                             int64_t i_start, int64_t i_end,
197                             int i_bitrate, int i_align,
198                             int i_query, va_list args )
199 {
200     int64_t i_tell;
201     double  f, *pf;
202     int64_t i64, *pi64;
203
204     if( i_end < 0 )    i_end   = stream_Size( s );
205     if( i_start < 0 )  i_start = 0;
206     if( i_align <= 0 ) i_align = 1;
207     i_tell = stream_Tell( s );
208
209     switch( i_query )
210     {
211         case DEMUX_GET_LENGTH:
212             pi64 = (int64_t*)va_arg( args, int64_t * );
213             if( i_bitrate > 0 && i_end > i_start )
214             {
215                 *pi64 = I64C(8000000) * (i_end - i_start) / i_bitrate;
216                 return VLC_SUCCESS;
217             }
218             return VLC_EGENERIC;
219
220         case DEMUX_GET_TIME:
221             pi64 = (int64_t*)va_arg( args, int64_t * );
222             if( i_bitrate > 0 && i_end > i_start )
223             {
224                 *pi64 = I64C(8000000) * (i_tell - i_start) / i_bitrate;
225                 return VLC_SUCCESS;
226             }
227             return VLC_EGENERIC;
228
229         case DEMUX_GET_POSITION:
230             pf = (double*)va_arg( args, double * );
231             if( i_start < i_end )
232             {
233                 *pf = (double)( i_tell - i_start ) /
234                       (double)( i_end  - i_start );
235                 return VLC_SUCCESS;
236             }
237             return VLC_EGENERIC;
238
239
240         case DEMUX_SET_POSITION:
241             f = (double)va_arg( args, double );
242             if( i_start < i_end && f >= 0.0 && f <= 1.0 )
243             {
244                 int64_t i_block = (f * ( i_end - i_start )) / i_align;
245
246                 if( stream_Seek( s, i_start + i_block * i_align ) )
247                 {
248                     return VLC_EGENERIC;
249                 }
250                 return VLC_SUCCESS;
251             }
252             return VLC_EGENERIC;
253
254         case DEMUX_SET_TIME:
255             i64 = (int64_t)va_arg( args, int64_t );
256             if( i_bitrate > 0 && i64 >= 0 )
257             {
258                 int64_t i_block = i64 * i_bitrate / I64C(8000000) / i_align;
259                 if( stream_Seek( s, i_start + i_block * i_align ) )
260                 {
261                     return VLC_EGENERIC;
262                 }
263                 return VLC_SUCCESS;
264             }
265             return VLC_EGENERIC;
266
267         case DEMUX_GET_FPS:
268         case DEMUX_GET_META:
269         case DEMUX_SET_NEXT_DEMUX_TIME:
270         case DEMUX_GET_TITLE_INFO:
271         case DEMUX_SET_GROUP:
272             return VLC_EGENERIC;
273
274         default:
275             msg_Err( s, "unknown query in demux_vaControlDefault" );
276             return VLC_EGENERIC;
277     }
278 }
279
280 /****************************************************************************
281  * stream_Demux*: create a demuxer for an outpout stream (allow demuxer chain)
282  ****************************************************************************/
283 typedef struct
284 {
285     /* Data buffer */
286     block_fifo_t *p_fifo;
287     block_t      *p_block;
288
289     int64_t     i_pos;
290
291     /* Demuxer */
292     char        *psz_name;
293     es_out_t    *out;
294     demux_t     *p_demux;
295
296 } d_stream_sys_t;
297
298 static int DStreamRead   ( stream_t *, void *p_read, int i_read );
299 static int DStreamPeek   ( stream_t *, uint8_t **pp_peek, int i_peek );
300 static int DStreamControl( stream_t *, int i_query, va_list );
301 static int DStreamThread ( stream_t * );
302
303
304 stream_t *__stream_DemuxNew( vlc_object_t *p_obj, const char *psz_demux,
305                              es_out_t *out )
306 {
307     /* We create a stream reader, and launch a thread */
308     stream_t       *s;
309     d_stream_sys_t *p_sys;
310
311     if( psz_demux == NULL || *psz_demux == '\0' ) return NULL;
312
313     s = vlc_stream_create( p_obj );
314     s->pf_block  = NULL;
315     s->pf_read   = DStreamRead;
316     s->pf_peek   = DStreamPeek;
317     s->pf_control= DStreamControl;
318
319     s->i_char_width = 1;
320     s->b_little_endian = VLC_FALSE;
321
322     s->p_sys = malloc( sizeof( d_stream_sys_t) );
323     p_sys = (d_stream_sys_t*)s->p_sys;
324
325     p_sys->i_pos = 0;
326     p_sys->out = out;
327     p_sys->p_demux = NULL;
328     p_sys->p_block = NULL;
329     p_sys->psz_name = strdup( psz_demux );
330
331     /* decoder fifo */
332     if( ( p_sys->p_fifo = block_FifoNew( s ) ) == NULL )
333     {
334         msg_Err( s, "out of memory" );
335         vlc_object_destroy( s );
336         free( p_sys );
337         return NULL;
338     }
339
340     if( vlc_thread_create( s, "stream out", DStreamThread,
341                            VLC_THREAD_PRIORITY_INPUT, VLC_FALSE ) )
342     {
343         vlc_object_destroy( s );
344         free( p_sys );
345         return NULL;
346     }
347
348     return s;
349 }
350
351 void stream_DemuxSend( stream_t *s, block_t *p_block )
352 {
353     d_stream_sys_t *p_sys = (d_stream_sys_t*)s->p_sys;
354     if( p_block ) block_FifoPut( p_sys->p_fifo, p_block );
355 }
356
357 void stream_DemuxDelete( stream_t *s )
358 {
359     d_stream_sys_t *p_sys = (d_stream_sys_t*)s->p_sys;
360     block_t *p_empty;
361
362     s->b_die = VLC_TRUE;
363     if( p_sys->p_demux ) p_sys->p_demux->b_die = VLC_TRUE;
364     p_empty = block_New( s, 1 ); p_empty->i_buffer = 0;
365     block_FifoPut( p_sys->p_fifo, p_empty );
366     vlc_thread_join( s );
367
368     if( p_sys->p_demux ) demux2_Delete( p_sys->p_demux );
369     if( p_sys->p_block ) block_Release( p_sys->p_block );
370
371     block_FifoRelease( p_sys->p_fifo );
372     free( p_sys->psz_name );
373     free( p_sys );
374
375     vlc_object_destroy( s );
376 }
377
378
379 static int DStreamRead( stream_t *s, void *p_read, int i_read )
380 {
381     d_stream_sys_t *p_sys = (d_stream_sys_t*)s->p_sys;
382     uint8_t *p_out = p_read;
383     int i_out = 0;
384
385     //msg_Dbg( s, "DStreamRead: wanted %d bytes", i_read );
386
387     while( !s->b_die && !s->b_error && i_read )
388     {
389         block_t *p_block = p_sys->p_block;
390         int i_copy;
391
392         if( !p_block )
393         {
394             p_block = block_FifoGet( p_sys->p_fifo );
395             if( !p_block ) s->b_error = 1;
396             p_sys->p_block = p_block;
397         }
398
399         if( p_block && i_read )
400         {
401             i_copy = __MIN( i_read, p_block->i_buffer );
402             if( p_out && i_copy ) memcpy( p_out, p_block->p_buffer, i_copy );
403             i_read -= i_copy;
404             i_out += i_copy;
405             p_block->i_buffer -= i_copy;
406             p_block->p_buffer += i_copy;
407
408             if( !p_block->i_buffer )
409             {
410                 block_Release( p_block );
411                 p_sys->p_block = NULL;
412             }
413         }
414     }
415
416     p_sys->i_pos += i_out;
417     return i_out;
418 }
419
420 static int DStreamPeek( stream_t *s, uint8_t **pp_peek, int i_peek )
421 {
422     d_stream_sys_t *p_sys = (d_stream_sys_t*)s->p_sys;
423     block_t **pp_block = &p_sys->p_block;
424     int i_out = 0;
425     *pp_peek = 0;
426
427     //msg_Dbg( s, "DStreamPeek: wanted %d bytes", i_peek );
428
429     while( !s->b_die && !s->b_error && i_peek )
430     {
431         int i_copy;
432
433         if( !*pp_block )
434         {
435             *pp_block = block_FifoGet( p_sys->p_fifo );
436             if( !*pp_block ) s->b_error = 1;
437         }
438
439         if( *pp_block && i_peek )
440         {
441             i_copy = __MIN( i_peek, (*pp_block)->i_buffer );
442             i_peek -= i_copy;
443             i_out += i_copy;
444
445             if( i_peek ) pp_block = &(*pp_block)->p_next;
446         }
447     }
448
449     if( p_sys->p_block )
450     {
451         p_sys->p_block = block_ChainGather( p_sys->p_block );
452         *pp_peek = p_sys->p_block->p_buffer;
453     }
454
455     return i_out;
456 }
457
458 static int DStreamControl( stream_t *s, int i_query, va_list args )
459 {
460     d_stream_sys_t *p_sys = (d_stream_sys_t*)s->p_sys;
461     int64_t    *p_i64;
462     vlc_bool_t *p_b;
463     int        *p_int;
464
465     switch( i_query )
466     {
467         case STREAM_GET_SIZE:
468             p_i64 = (int64_t*) va_arg( args, int64_t * );
469             *p_i64 = 0;
470             return VLC_SUCCESS;
471
472         case STREAM_CAN_SEEK:
473             p_b = (vlc_bool_t*) va_arg( args, vlc_bool_t * );
474             *p_b = VLC_FALSE;
475             return VLC_SUCCESS;
476
477         case STREAM_CAN_FASTSEEK:
478             p_b = (vlc_bool_t*) va_arg( args, vlc_bool_t * );
479             *p_b = VLC_FALSE;
480             return VLC_SUCCESS;
481
482         case STREAM_GET_POSITION:
483             p_i64 = (int64_t*) va_arg( args, int64_t * );
484             *p_i64 = p_sys->i_pos;
485             return VLC_SUCCESS;
486
487         case STREAM_SET_POSITION:
488         {
489             int64_t i64 = (int64_t)va_arg( args, int64_t );
490             int i_skip;
491             if( i64 < p_sys->i_pos ) return VLC_EGENERIC;
492             i_skip = i64 - p_sys->i_pos;
493
494             while( i_skip > 0 )
495             {
496                 int i_read = DStreamRead( s, NULL, i_skip );
497                 if( i_read <= 0 ) return VLC_EGENERIC;
498                 i_skip -= i_read;
499             }
500             return VLC_SUCCESS;
501         }
502
503         case STREAM_GET_MTU:
504             p_int = (int*) va_arg( args, int * );
505             *p_int = 0;
506             return VLC_SUCCESS;
507
508         case STREAM_CONTROL_ACCESS:
509             return VLC_EGENERIC;
510
511         default:
512             msg_Err( s, "invalid DStreamControl query=0x%x", i_query );
513             return VLC_EGENERIC;
514     }
515 }
516
517 static int DStreamThread( stream_t *s )
518 {
519     d_stream_sys_t *p_sys = (d_stream_sys_t*)s->p_sys;
520     demux_t *p_demux;
521
522     /* Create the demuxer */
523     if( !(p_demux = demux2_New( s, "", p_sys->psz_name, "", s, p_sys->out,
524                                VLC_FALSE )) )
525     {
526         return VLC_EGENERIC;
527     }
528
529     p_sys->p_demux = p_demux;
530
531     /* Main loop */
532     while( !s->b_die && !p_demux->b_die )
533     {
534         if( p_demux->pf_demux( p_demux ) <= 0 ) break;
535     }
536
537     p_demux->b_die = VLC_TRUE;
538     return VLC_SUCCESS;
539 }
540
541 /****************************************************************************
542  * Utility functions
543  ****************************************************************************/
544 static void SkipID3Tag( demux_t *p_demux )
545 {
546     uint8_t *p_peek;
547     uint8_t version, revision;
548     int i_size;
549     int b_footer;
550
551     if( !p_demux->s ) return;
552
553     /* Get 10 byte id3 header */
554     if( stream_Peek( p_demux->s, &p_peek, 10 ) < 10 ) return;
555
556     if( p_peek[0] != 'I' || p_peek[1] != 'D' || p_peek[2] != '3' ) return;
557
558     version = p_peek[3];
559     revision = p_peek[4];
560     b_footer = p_peek[5] & 0x10;
561     i_size = (p_peek[6]<<21) + (p_peek[7]<<14) + (p_peek[8]<<7) + p_peek[9];
562
563     if( b_footer ) i_size += 10;
564     i_size += 10;
565
566     /* Skip the entire tag */
567     stream_Read( p_demux->s, NULL, i_size );
568
569     msg_Dbg( p_demux, "ID3v2.%d revision %d tag found, skipping %d bytes",
570              version, revision, i_size );
571
572     return;
573 }