]> git.sesse.net Git - vlc/blob - src/input/demux.c
8ae1d65c4dd7558e396c833de17b33fccfa9e75c
[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 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include "demux.h"
29 #include <libvlc.h>
30 #include <vlc_codec.h>
31 #include <vlc_meta.h>
32 #include <vlc_url.h>
33 #include <vlc_modules.h>
34
35 static bool SkipID3Tag( demux_t * );
36 static bool SkipAPETag( demux_t *p_demux );
37
38 /* Decode URL (which has had its scheme stripped earlier) to a file path. */
39 /* XXX: evil code duplication from access.c */
40 static char *get_path(const char *location)
41 {
42     char *url, *path;
43
44     /* Prepending "file://" is a bit hackish. But then again, we do not want
45      * to hard-code the list of schemes that use file paths in make_path().
46      */
47     if (asprintf(&url, "file://%s", location) == -1)
48         return NULL;
49
50     path = make_path (url);
51     free (url);
52     return path;
53 }
54
55 #undef demux_New
56 /*****************************************************************************
57  * demux_New:
58  *  if s is NULL then load a access_demux
59  *****************************************************************************/
60 demux_t *demux_New( vlc_object_t *p_obj, input_thread_t *p_parent_input,
61                     const char *psz_access, const char *psz_demux,
62                     const char *psz_location,
63                     stream_t *s, es_out_t *out, bool b_quick )
64 {
65     demux_t *p_demux = vlc_custom_create( p_obj, sizeof( *p_demux ), "demux" );
66     const char *psz_module;
67
68     if( p_demux == NULL ) return NULL;
69
70     p_demux->p_input = p_parent_input;
71
72     /* Parse URL */
73     p_demux->psz_access = strdup( psz_access );
74     p_demux->psz_demux  = strdup( psz_demux );
75     p_demux->psz_location = strdup( psz_location );
76     p_demux->psz_file = get_path( psz_location );
77
78     /* Take into account "demux" to be able to do :demux=dump */
79     if( *p_demux->psz_demux == '\0' )
80     {
81         free( p_demux->psz_demux );
82         p_demux->psz_demux = var_GetNonEmptyString( p_obj, "demux" );
83         if( p_demux->psz_demux == NULL )
84             p_demux->psz_demux = strdup( "" );
85     }
86
87     if( !b_quick )
88         msg_Dbg( p_obj, "creating demux: access='%s' demux='%s' "
89                  "location='%s' file='%s'",
90                  p_demux->psz_access, p_demux->psz_demux,
91                  p_demux->psz_location, p_demux->psz_file );
92
93     p_demux->s          = s;
94     p_demux->out        = out;
95
96     p_demux->pf_demux   = NULL;
97     p_demux->pf_control = NULL;
98     p_demux->p_sys      = NULL;
99     p_demux->info.i_update = 0;
100     p_demux->info.i_title  = 0;
101     p_demux->info.i_seekpoint = 0;
102
103     if( s ) psz_module = p_demux->psz_demux;
104     else psz_module = p_demux->psz_access;
105
106     const char *psz_ext;
107
108     if( s && *psz_module == '\0'
109      && p_demux->psz_file != NULL
110      && (psz_ext = strrchr( p_demux->psz_file, '.' )) )
111     {
112        /* XXX: add only file without any problem here and with strong detection.
113         *  - no .mp3, .a52, ... (aac is added as it works only by file ext
114         *     anyway
115         *  - wav can't be added 'cause of a52 and dts in them as raw audio
116          */
117          static const struct { char ext[5]; char demux[9]; } exttodemux[] =
118          {
119             { "aac",  "aac" },
120             { "aiff", "aiff" },
121             { "asf",  "asf" }, { "wmv",  "asf" }, { "wma",  "asf" },
122             { "avi",  "avi" },
123             { "au",   "au" },
124             { "flac", "flac" },
125             { "dv",   "dv" },
126             { "drc",  "dirac" },
127             { "m3u",  "m3u" },
128             { "m3u8", "m3u8" },
129             { "mkv",  "mkv" }, { "mka",  "mkv" }, { "mks",  "mkv" },
130             { "mp4",  "mp4" }, { "m4a",  "mp4" }, { "mov",  "mp4" }, { "moov", "mp4" },
131             { "nsv",  "nsv" },
132             { "ogg",  "ogg" }, { "ogm",  "ogg" }, /* legacy Ogg */
133             { "oga",  "ogg" }, { "spx",  "ogg" }, { "ogv", "ogg" },
134             { "ogx",  "ogg" }, /*RFC5334*/
135             { "pva",  "pva" },
136             { "rm",   "avformat" },
137             { "m4v",  "m4v" },
138             { "h264", "h264" },
139             { "voc",  "voc" },
140             { "mid",  "smf" }, { "rmi",  "smf" },
141             { "",  "" },
142         };
143         /* Here, we don't mind if it does not work, it must be quick */
144         static const struct { char ext[4]; char demux[5]; } exttodemux_quick[] =
145         {
146             { "mp3", "mpga" },
147             { "ogg", "ogg" },
148             { "wma", "asf" },
149             { "", "" }
150         };
151
152         psz_ext++; // skip '.'
153
154         if( !b_quick )
155         {
156             for( unsigned i = 0; exttodemux[i].ext[0]; i++ )
157             {
158                 if( !strcasecmp( psz_ext, exttodemux[i].ext ) )
159                 {
160                     psz_module = exttodemux[i].demux;
161                     break;
162                 }
163             }
164         }
165         else
166         {
167             for( unsigned i = 0; exttodemux_quick[i].ext[0]; i++ )
168             {
169                 if( !strcasecmp( psz_ext, exttodemux_quick[i].ext ) )
170                 {
171                     psz_module = exttodemux_quick[i].demux;
172                     break;
173                 }
174             }
175
176         }
177     }
178
179     if( s )
180     {
181         /* ID3/APE tags will mess-up demuxer probing so we skip it here.
182          * ID3/APE parsers will called later on in the demuxer to access the
183          * skipped info. */
184         while (SkipID3Tag( p_demux ))
185           ;
186         SkipAPETag( p_demux );
187
188         p_demux->p_module =
189             module_need( p_demux, "demux", psz_module,
190                          !strcmp( psz_module, p_demux->psz_demux ) );
191     }
192     else
193     {
194         p_demux->p_module =
195             module_need( p_demux, "access_demux", psz_module,
196                          !strcmp( psz_module, p_demux->psz_access ) );
197     }
198
199     if( p_demux->p_module == NULL )
200     {
201         free( p_demux->psz_file );
202         free( p_demux->psz_location );
203         free( p_demux->psz_demux );
204         free( p_demux->psz_access );
205         vlc_object_release( p_demux );
206         return NULL;
207     }
208
209     return p_demux;
210 }
211
212 /*****************************************************************************
213  * demux_Delete:
214  *****************************************************************************/
215 void demux_Delete( demux_t *p_demux )
216 {
217     module_unneed( p_demux, p_demux->p_module );
218
219     free( p_demux->psz_file );
220     free( p_demux->psz_location );
221     free( p_demux->psz_demux );
222     free( p_demux->psz_access );
223
224     vlc_object_release( p_demux );
225 }
226
227 /*****************************************************************************
228  * demux_GetParentInput:
229  *****************************************************************************/
230 input_thread_t * demux_GetParentInput( demux_t *p_demux )
231 {
232     return p_demux->p_input ? vlc_object_hold((vlc_object_t*)p_demux->p_input) : NULL;
233 }
234
235
236 /*****************************************************************************
237  * demux_vaControlHelper:
238  *****************************************************************************/
239 int demux_vaControlHelper( stream_t *s,
240                             int64_t i_start, int64_t i_end,
241                             int64_t i_bitrate, int i_align,
242                             int i_query, va_list args )
243 {
244     int64_t i_tell;
245     double  f, *pf;
246     int64_t i64, *pi64;
247
248     if( i_end < 0 )    i_end   = stream_Size( s );
249     if( i_start < 0 )  i_start = 0;
250     if( i_align <= 0 ) i_align = 1;
251     i_tell = stream_Tell( s );
252
253     switch( i_query )
254     {
255         case DEMUX_GET_LENGTH:
256             pi64 = (int64_t*)va_arg( args, int64_t * );
257             if( i_bitrate > 0 && i_end > i_start )
258             {
259                 *pi64 = INT64_C(8000000) * (i_end - i_start) / i_bitrate;
260                 return VLC_SUCCESS;
261             }
262             return VLC_EGENERIC;
263
264         case DEMUX_GET_TIME:
265             pi64 = (int64_t*)va_arg( args, int64_t * );
266             if( i_bitrate > 0 && i_tell >= i_start )
267             {
268                 *pi64 = INT64_C(8000000) * (i_tell - i_start) / i_bitrate;
269                 return VLC_SUCCESS;
270             }
271             return VLC_EGENERIC;
272
273         case DEMUX_GET_POSITION:
274             pf = (double*)va_arg( args, double * );
275             if( i_start < i_end )
276             {
277                 *pf = (double)( i_tell - i_start ) /
278                       (double)( i_end  - i_start );
279                 return VLC_SUCCESS;
280             }
281             return VLC_EGENERIC;
282
283
284         case DEMUX_SET_POSITION:
285             f = (double)va_arg( args, double );
286             if( i_start < i_end && f >= 0.0 && f <= 1.0 )
287             {
288                 int64_t i_block = (f * ( i_end - i_start )) / i_align;
289
290                 if( stream_Seek( s, i_start + i_block * i_align ) )
291                 {
292                     return VLC_EGENERIC;
293                 }
294                 return VLC_SUCCESS;
295             }
296             return VLC_EGENERIC;
297
298         case DEMUX_SET_TIME:
299             i64 = (int64_t)va_arg( args, int64_t );
300             if( i_bitrate > 0 && i64 >= 0 )
301             {
302                 int64_t i_block = i64 * i_bitrate / INT64_C(8000000) / i_align;
303                 if( stream_Seek( s, i_start + i_block * i_align ) )
304                 {
305                     return VLC_EGENERIC;
306                 }
307                 return VLC_SUCCESS;
308             }
309             return VLC_EGENERIC;
310
311         case DEMUX_GET_PTS_DELAY:
312         case DEMUX_GET_FPS:
313         case DEMUX_GET_META:
314         case DEMUX_HAS_UNSUPPORTED_META:
315         case DEMUX_SET_NEXT_DEMUX_TIME:
316         case DEMUX_GET_TITLE_INFO:
317         case DEMUX_SET_GROUP:
318         case DEMUX_GET_ATTACHMENTS:
319         case DEMUX_CAN_RECORD:
320         case DEMUX_SET_RECORD_STATE:
321             return VLC_EGENERIC;
322
323         default:
324             msg_Err( s, "unknown query in demux_vaControlDefault" );
325             return VLC_EGENERIC;
326     }
327 }
328
329 /****************************************************************************
330  * Utility functions
331  ****************************************************************************/
332 decoder_t *demux_PacketizerNew( demux_t *p_demux, es_format_t *p_fmt, const char *psz_msg )
333 {
334     decoder_t *p_packetizer;
335     p_packetizer = vlc_custom_create( p_demux, sizeof( *p_packetizer ),
336                                       "demux packetizer" );
337     if( !p_packetizer )
338     {
339         es_format_Clean( p_fmt );
340         return NULL;
341     }
342     p_fmt->b_packetized = false;
343
344     p_packetizer->pf_decode_audio = NULL;
345     p_packetizer->pf_decode_video = NULL;
346     p_packetizer->pf_decode_sub = NULL;
347     p_packetizer->pf_packetize = NULL;
348
349     p_packetizer->fmt_in = *p_fmt;
350     es_format_Init( &p_packetizer->fmt_out, UNKNOWN_ES, 0 );
351
352     p_packetizer->p_module = module_need( p_packetizer, "packetizer", NULL, false );
353     if( !p_packetizer->p_module )
354     {
355         es_format_Clean( p_fmt );
356         vlc_object_release( p_packetizer );
357         msg_Err( p_demux, "cannot find packetizer for %s", psz_msg );
358         return NULL;
359     }
360
361     return p_packetizer;
362 }
363
364 void demux_PacketizerDestroy( decoder_t *p_packetizer )
365 {
366     if( p_packetizer->p_module )
367         module_unneed( p_packetizer, p_packetizer->p_module );
368     es_format_Clean( &p_packetizer->fmt_in );
369     if( p_packetizer->p_description )
370         vlc_meta_Delete( p_packetizer->p_description );
371     vlc_object_release( p_packetizer );
372 }
373
374 static bool SkipID3Tag( demux_t *p_demux )
375 {
376     const uint8_t *p_peek;
377     uint8_t version, revision;
378     int i_size;
379     int b_footer;
380
381     if( !p_demux->s )
382         return false;
383
384     /* Get 10 byte id3 header */
385     if( stream_Peek( p_demux->s, &p_peek, 10 ) < 10 )
386         return false;
387
388     if( memcmp( p_peek, "ID3", 3 ) )
389         return false;
390
391     version = p_peek[3];
392     revision = p_peek[4];
393     b_footer = p_peek[5] & 0x10;
394     i_size = (p_peek[6]<<21) + (p_peek[7]<<14) + (p_peek[8]<<7) + p_peek[9];
395
396     if( b_footer ) i_size += 10;
397     i_size += 10;
398
399     /* Skip the entire tag */
400     stream_Read( p_demux->s, NULL, i_size );
401
402     msg_Dbg( p_demux, "ID3v2.%d revision %d tag found, skipping %d bytes",
403              version, revision, i_size );
404     return true;
405 }
406 static bool SkipAPETag( demux_t *p_demux )
407 {
408     const uint8_t *p_peek;
409     int i_version;
410     int i_size;
411     uint32_t flags;
412
413     if( !p_demux->s )
414         return false;
415
416     /* Get 32 byte ape header */
417     if( stream_Peek( p_demux->s, &p_peek, 32 ) < 32 )
418         return false;
419
420     if( memcmp( p_peek, "APETAGEX", 8 ) )
421         return false;
422
423     i_version = GetDWLE( &p_peek[8] );
424     flags = GetDWLE( &p_peek[8+4+4] );
425     if( ( i_version != 1000 && i_version != 2000 ) || !( flags & (1<<29) ) )
426         return false;
427
428     i_size = GetDWLE( &p_peek[8+4] ) + ( (flags&(1<<30)) ? 32 : 0 );
429
430     /* Skip the entire tag */
431     stream_Read( p_demux->s, NULL, i_size );
432
433     msg_Dbg( p_demux, "AP2 v%d tag found, skipping %d bytes",
434              i_version/1000, i_size );
435     return true;
436 }
437