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