]> git.sesse.net Git - vlc/blob - modules/codec/ffmpeg/demux.c
Remove E_()
[vlc] / modules / codec / ffmpeg / demux.c
1 /*****************************************************************************
2  * demux.c: demuxer using ffmpeg (libavformat).
3  *****************************************************************************
4  * Copyright (C) 2004-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Gildas Bazin <gbazin@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <vlc/vlc.h>
34 #include <vlc_demux.h>
35 #include <vlc_stream.h>
36 #include <vlc_meta.h>
37
38 /* ffmpeg header */
39 #if defined(HAVE_LIBAVFORMAT_AVFORMAT_H)
40 #   include <libavformat/avformat.h>
41 #elif defined(HAVE_FFMPEG_AVFORMAT_H)
42 #   include <ffmpeg/avformat.h>
43 #elif defined(HAVE_LIBAVFORMAT_TREE)
44 #   include <avformat.h>
45 #endif
46
47 #include "ffmpeg.h"
48
49 //#define AVFORMAT_DEBUG 1
50
51 /* Version checking */
52 #if defined(HAVE_FFMPEG_AVFORMAT_H) || defined(HAVE_LIBAVFORMAT_AVFORMAT_H) || defined(HAVE_LIBAVFORMAT_TREE)
53
54 /*****************************************************************************
55  * demux_sys_t: demux descriptor
56  *****************************************************************************/
57 struct demux_sys_t
58 {
59     ByteIOContext   io;
60     int             io_buffer_size;
61     uint8_t        *io_buffer;
62
63     AVInputFormat  *fmt;
64     AVFormatContext *ic;
65     URLContext     url;
66     URLProtocol    prot;
67
68     int             i_tk;
69     es_out_id_t     **tk;
70
71     int64_t     i_pcr;
72     int64_t     i_pcr_inc;
73     int         i_pcr_tk;
74 };
75
76 /*****************************************************************************
77  * Local prototypes
78  *****************************************************************************/
79 static int Demux  ( demux_t *p_demux );
80 static int Control( demux_t *p_demux, int i_query, va_list args );
81
82 static int IORead( void *opaque, uint8_t *buf, int buf_size );
83 static offset_t IOSeek( void *opaque, offset_t offset, int whence );
84
85 /*****************************************************************************
86  * Open
87  *****************************************************************************/
88 int OpenDemux( vlc_object_t *p_this )
89 {
90     demux_t       *p_demux = (demux_t*)p_this;
91     demux_sys_t   *p_sys;
92     AVProbeData   pd;
93     AVInputFormat *fmt;
94     unsigned int i;
95     bool b_avfmt_nofile;
96
97     /* Init Probe data */
98     pd.filename = p_demux->psz_path;
99     if( ( pd.buf_size = stream_Peek( p_demux->s, &pd.buf, 2048 ) ) <= 0 )
100     {
101         msg_Warn( p_demux, "cannot peek" );
102         return VLC_EGENERIC;
103     }
104
105     av_register_all(); /* Can be called several times */
106
107     /* Guess format */
108     if( !( fmt = av_probe_input_format( &pd, 1 ) ) )
109     {
110         msg_Dbg( p_demux, "couldn't guess format" );
111         return VLC_EGENERIC;
112     }
113
114     /* Don't try to handle MPEG unless forced */
115     if( !p_demux->b_force &&
116         ( !strcmp( fmt->name, "mpeg" ) ||
117           !strcmp( fmt->name, "vcd" ) ||
118           !strcmp( fmt->name, "vob" ) ||
119           !strcmp( fmt->name, "mpegts" ) ||
120           /* libavformat's redirector won't work */
121           !strcmp( fmt->name, "redir" ) ||
122           !strcmp( fmt->name, "sdp" ) ) )
123     {
124         return VLC_EGENERIC;
125     }
126
127     /* Don't trigger false alarms on bin files */
128     if( !p_demux->b_force && !strcmp( fmt->name, "psxstr" ) )
129     {
130         int i_len;
131
132         if( !p_demux->psz_path ) return VLC_EGENERIC;
133
134         i_len = strlen( p_demux->psz_path );
135         if( i_len < 4 ) return VLC_EGENERIC;
136
137         if( strcasecmp( &p_demux->psz_path[i_len - 4], ".str" ) &&
138             strcasecmp( &p_demux->psz_path[i_len - 4], ".xai" ) &&
139             strcasecmp( &p_demux->psz_path[i_len - 3], ".xa" ) )
140         {
141             return VLC_EGENERIC;
142         }
143     }
144
145     msg_Dbg( p_demux, "detected format: %s", fmt->name );
146
147     /* Fill p_demux fields */
148     p_demux->pf_demux = Demux;
149     p_demux->pf_control = Control;
150     p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
151     p_sys->ic = 0;
152     p_sys->fmt = fmt;
153     p_sys->i_tk = 0;
154     p_sys->tk = NULL;
155     p_sys->i_pcr_tk = -1;
156     p_sys->i_pcr = -1;
157
158     /* Create I/O wrapper */
159     p_sys->io_buffer_size = 32768;  /* FIXME */
160     p_sys->io_buffer = malloc( p_sys->io_buffer_size );
161     p_sys->url.priv_data = p_demux;
162     p_sys->url.prot = &p_sys->prot;
163     p_sys->url.prot->name = "VLC I/O wrapper";
164     p_sys->url.prot->url_open = 0;
165     p_sys->url.prot->url_read =
166                     (int (*) (URLContext *, unsigned char *, int))IORead;
167     p_sys->url.prot->url_write = 0;
168     p_sys->url.prot->url_seek =
169                     (offset_t (*) (URLContext *, offset_t, int))IOSeek;
170     p_sys->url.prot->url_close = 0;
171     p_sys->url.prot->next = 0;
172     init_put_byte( &p_sys->io, p_sys->io_buffer, p_sys->io_buffer_size,
173                    0, &p_sys->url, IORead, NULL, IOSeek );
174
175     b_avfmt_nofile = p_sys->fmt->flags & AVFMT_NOFILE;
176     p_sys->fmt->flags |= AVFMT_NOFILE; /* libavformat must not fopen/fclose */
177
178     /* Open it */
179     if( av_open_input_stream( &p_sys->ic, &p_sys->io, p_demux->psz_path,
180                               p_sys->fmt, NULL ) )
181     {
182         msg_Err( p_demux, "av_open_input_stream failed" );
183         if( !b_avfmt_nofile ) p_sys->fmt->flags ^= AVFMT_NOFILE;
184         CloseDemux( p_this );
185         return VLC_EGENERIC;
186     }
187
188     if( av_find_stream_info( p_sys->ic ) < 0 )
189     {
190         msg_Err( p_demux, "av_find_stream_info failed" );
191         if( !b_avfmt_nofile ) p_sys->fmt->flags ^= AVFMT_NOFILE;
192         CloseDemux( p_this );
193         return VLC_EGENERIC;
194     }
195     if( !b_avfmt_nofile ) p_sys->fmt->flags ^= AVFMT_NOFILE;
196
197     for( i = 0; i < p_sys->ic->nb_streams; i++ )
198     {
199         AVCodecContext *cc = p_sys->ic->streams[i]->codec;
200         es_out_id_t  *es;
201         es_format_t  fmt;
202         vlc_fourcc_t fcc;
203
204         if( !GetVlcFourcc( cc->codec_id, NULL, &fcc, NULL ) )
205         {
206             fcc = VLC_FOURCC( 'u', 'n', 'd', 'f' );
207
208             /* Special case for raw video data */
209             if( cc->codec_id == CODEC_ID_RAWVIDEO )
210             {
211                 msg_Dbg( p_demux, "raw video, pixel format: %i", cc->pix_fmt );
212                 fcc = GetVlcChroma( cc->pix_fmt );
213             }
214         }
215
216         switch( cc->codec_type )
217         {
218         case CODEC_TYPE_AUDIO:
219             es_format_Init( &fmt, AUDIO_ES, fcc );
220             fmt.audio.i_channels = cc->channels;
221             fmt.audio.i_rate = cc->sample_rate;
222             fmt.audio.i_bitspersample = cc->bits_per_sample;
223             fmt.audio.i_blockalign = cc->block_align;
224             break;
225         case CODEC_TYPE_VIDEO:
226             es_format_Init( &fmt, VIDEO_ES, fcc );
227             fmt.video.i_width = cc->width;
228             fmt.video.i_height = cc->height;
229             if( cc->palctrl )
230             {
231                 fmt.video.p_palette = malloc( sizeof(video_palette_t) );
232                 *fmt.video.p_palette = *(video_palette_t *)cc->palctrl;
233             }
234             break;
235         case CODEC_TYPE_SUBTITLE:
236             es_format_Init( &fmt, SPU_ES, fcc );
237             break;
238         default:
239             msg_Warn( p_demux, "unsupported track type in ffmpeg demux" );
240             break;
241         }
242
243         fmt.psz_language = strdup( p_sys->ic->streams[i]->language );
244         fmt.i_extra = cc->extradata_size;
245         fmt.p_extra = cc->extradata;
246         es = es_out_Add( p_demux->out, &fmt );
247
248         msg_Dbg( p_demux, "adding es: %s codec = %4.4s",
249                  cc->codec_type == CODEC_TYPE_AUDIO ? "audio" : "video",
250                  (char*)&fcc );
251         TAB_APPEND( p_sys->i_tk, p_sys->tk, es );
252     }
253
254     msg_Dbg( p_demux, "AVFormat supported stream" );
255     msg_Dbg( p_demux, "    - format = %s (%s)",
256              p_sys->fmt->name, p_sys->fmt->long_name );
257     msg_Dbg( p_demux, "    - start time = %"PRId64,
258              ( p_sys->ic->start_time != (int64_t)AV_NOPTS_VALUE ) ?
259              p_sys->ic->start_time * 1000000 / AV_TIME_BASE : -1 );
260     msg_Dbg( p_demux, "    - duration = %"PRId64,
261              ( p_sys->ic->duration != (int64_t)AV_NOPTS_VALUE ) ?
262              p_sys->ic->duration * 1000000 / AV_TIME_BASE : -1 );
263
264     return VLC_SUCCESS;
265 }
266
267 /*****************************************************************************
268  * Close
269  *****************************************************************************/
270 void CloseDemux( vlc_object_t *p_this )
271 {
272     demux_t     *p_demux = (demux_t*)p_this;
273     demux_sys_t *p_sys = p_demux->p_sys;
274     bool b_avfmt_nofile;
275
276     FREENULL( p_sys->tk );
277
278     b_avfmt_nofile = p_sys->fmt->flags & AVFMT_NOFILE;
279     p_sys->fmt->flags |= AVFMT_NOFILE; /* libavformat must not fopen/fclose */
280     if( p_sys->ic ) av_close_input_file( p_sys->ic );
281     if( !b_avfmt_nofile ) p_sys->fmt->flags ^= AVFMT_NOFILE;
282
283     free( p_sys->io_buffer );
284     free( p_sys );
285 }
286
287 /*****************************************************************************
288  * Demux:
289  *****************************************************************************/
290 static int Demux( demux_t *p_demux )
291 {
292     demux_sys_t *p_sys = p_demux->p_sys;
293     AVPacket    pkt;
294     block_t     *p_frame;
295     int64_t     i_start_time;
296
297     /* Read a frame */
298     if( av_read_frame( p_sys->ic, &pkt ) )
299     {
300         return 0;
301     }
302     if( pkt.stream_index < 0 || pkt.stream_index >= p_sys->i_tk )
303     {
304         av_free_packet( &pkt );
305         return 1;
306     }
307     if( ( p_frame = block_New( p_demux, pkt.size ) ) == NULL )
308     {
309         return 0;
310     }
311
312     memcpy( p_frame->p_buffer, pkt.data, pkt.size );
313
314     if( pkt.flags & PKT_FLAG_KEY )
315         p_frame->i_flags |= BLOCK_FLAG_TYPE_I;
316
317     i_start_time = ( p_sys->ic->start_time != (int64_t)AV_NOPTS_VALUE ) ?
318         ( p_sys->ic->start_time / AV_TIME_BASE )  : 0;
319
320     p_frame->i_dts = ( pkt.dts == (int64_t)AV_NOPTS_VALUE ) ?
321         0 : (pkt.dts - i_start_time) * 1000000 *
322         p_sys->ic->streams[pkt.stream_index]->time_base.num /
323         p_sys->ic->streams[pkt.stream_index]->time_base.den;
324     p_frame->i_pts = ( pkt.pts == (int64_t)AV_NOPTS_VALUE ) ?
325         0 : (pkt.pts - i_start_time) * 1000000 *
326         p_sys->ic->streams[pkt.stream_index]->time_base.num /
327         p_sys->ic->streams[pkt.stream_index]->time_base.den;
328
329 #ifdef AVFORMAT_DEBUG
330     msg_Dbg( p_demux, "tk[%d] dts=%"PRId64" pts=%"PRId64,
331              pkt.stream_index, p_frame->i_dts, p_frame->i_pts );
332 #endif
333
334     if( pkt.dts > 0  &&
335         ( pkt.stream_index == p_sys->i_pcr_tk || p_sys->i_pcr_tk < 0 ) )
336     {
337         p_sys->i_pcr_tk = pkt.stream_index;
338         p_sys->i_pcr = p_frame->i_dts;
339
340         es_out_Control( p_demux->out, ES_OUT_SET_PCR, (int64_t)p_sys->i_pcr );
341     }
342
343     es_out_Send( p_demux->out, p_sys->tk[pkt.stream_index], p_frame );
344     av_free_packet( &pkt );
345     return 1;
346 }
347
348 /*****************************************************************************
349  * Control:
350  *****************************************************************************/
351 static int Control( demux_t *p_demux, int i_query, va_list args )
352 {
353     demux_sys_t *p_sys = p_demux->p_sys;
354     double f, *pf;
355     int64_t i64, *pi64;
356
357     switch( i_query )
358     {
359         case DEMUX_GET_POSITION:
360             pf = (double*) va_arg( args, double* ); *pf = 0.0;
361             i64 = stream_Size( p_demux->s );
362             if( i64 > 0 )
363             {
364                 *pf = (double)stream_Tell( p_demux->s ) / (double)i64;
365             }
366
367             if( (p_sys->ic->duration != (int64_t)AV_NOPTS_VALUE) && (p_sys->i_pcr > 0) )
368             {
369                 *pf = (double)p_sys->i_pcr / (double)p_sys->ic->duration;
370             }
371
372             return VLC_SUCCESS;
373
374         case DEMUX_SET_POSITION:
375             f = (double) va_arg( args, double );
376             i64 = stream_Tell( p_demux->s );
377             if( p_sys->i_pcr > 0 )
378             {
379                 i64 = p_sys->ic->duration * f;
380                 if( p_sys->ic->start_time != (int64_t)AV_NOPTS_VALUE )
381                     i64 += p_sys->ic->start_time;
382
383                 msg_Warn( p_demux, "DEMUX_SET_POSITION: %"PRId64, i64 );
384
385                 /* If we have a duration, we prefer to seek by time
386                    but if we don't, or if the seek fails, try BYTE seeking */
387                 if( p_sys->ic->duration == (int64_t)AV_NOPTS_VALUE ||
388                     (av_seek_frame( p_sys->ic, -1, i64, 0 ) < 0) )
389                 {
390                     int64_t i_size = stream_Size( p_demux->s );
391                     i64 = (int64_t)i_size * f;
392
393                     msg_Warn( p_demux, "DEMUX_SET_BYTE_POSITION: %"PRId64, i64 );
394                     if( av_seek_frame( p_sys->ic, -1, i64, AVSEEK_FLAG_BYTE ) < 0 )
395                         return VLC_EGENERIC;
396                 }
397                 es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
398                 p_sys->i_pcr = -1; /* Invalidate time display */
399             }
400             return VLC_SUCCESS;
401
402         case DEMUX_GET_LENGTH:
403             pi64 = (int64_t*)va_arg( args, int64_t * );
404             if( p_sys->ic->duration != (int64_t)AV_NOPTS_VALUE )
405             {
406                 *pi64 = p_sys->ic->duration;
407             }
408             else *pi64 = 0;
409             return VLC_SUCCESS;
410
411         case DEMUX_GET_TIME:
412             pi64 = (int64_t*)va_arg( args, int64_t * );
413             *pi64 = p_sys->i_pcr;
414             return VLC_SUCCESS;
415
416         case DEMUX_SET_TIME:
417             i64 = (int64_t)va_arg( args, int64_t );
418             if( p_sys->ic->start_time != (int64_t)AV_NOPTS_VALUE )
419                 i64 += p_sys->ic->start_time;
420
421             msg_Warn( p_demux, "DEMUX_SET_TIME: %"PRId64, i64 );
422
423             if( av_seek_frame( p_sys->ic, -1, i64, 0 ) < 0 )
424             {
425                 return VLC_EGENERIC;
426             }
427             es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
428             p_sys->i_pcr = -1; /* Invalidate time display */
429             return VLC_SUCCESS;
430
431         case DEMUX_GET_META:
432         {
433             vlc_meta_t *p_meta = (vlc_meta_t*)va_arg( args, vlc_meta_t* );
434
435             if( !p_sys->ic->title[0] || !p_sys->ic->author[0] ||
436                 !p_sys->ic->copyright[0] || !p_sys->ic->comment[0] ||
437                 /*!p_sys->ic->album[0] ||*/ !p_sys->ic->genre[0] )
438             {
439                 return VLC_EGENERIC;
440             }
441
442             if( p_sys->ic->title[0] )
443                 vlc_meta_SetTitle( p_meta, p_sys->ic->title );
444             if( p_sys->ic->author[0] )
445                 vlc_meta_SetArtist( p_meta, p_sys->ic->author );
446             if( p_sys->ic->copyright[0] )
447                 vlc_meta_SetCopyright( p_meta, p_sys->ic->copyright );
448             if( p_sys->ic->comment[0] )
449                 vlc_meta_SetDescription( p_meta, p_sys->ic->comment );
450             if( p_sys->ic->genre[0] )
451                 vlc_meta_SetGenre( p_meta, p_sys->ic->genre );
452             return VLC_SUCCESS;
453         }
454
455         default:
456             return VLC_EGENERIC;
457     }
458 }
459
460 /*****************************************************************************
461  * I/O wrappers for libavformat
462  *****************************************************************************/
463 static int IORead( void *opaque, uint8_t *buf, int buf_size )
464 {
465     URLContext *p_url = opaque;
466     demux_t *p_demux = p_url->priv_data;
467     int i_ret = stream_Read( p_demux->s, buf, buf_size );
468     return i_ret ? i_ret : -1;
469 }
470
471 static offset_t IOSeek( void *opaque, offset_t offset, int whence )
472 {
473     URLContext *p_url = opaque;
474     demux_t *p_demux = p_url->priv_data;
475     int64_t i_absolute = (int64_t)offset;
476     int64_t i_size = stream_Size( p_demux->s );
477
478 #ifdef AVFORMAT_DEBUG
479     msg_Warn( p_demux, "IOSeek offset: %"PRId64", whence: %i", offset, whence );
480 #endif
481
482     switch( whence )
483     {
484         case SEEK_SET:
485             break;
486         case SEEK_CUR:
487             i_absolute = stream_Tell( p_demux->s ) + offset;
488             break;
489         case SEEK_END:
490             i_absolute = i_size + offset;
491             break;
492         default:
493             return -1;
494
495     }
496     if( i_absolute < 0 )
497         i_absolute = 0;
498     if( i_size )
499     {
500         if( i_absolute > i_size )
501             i_absolute = i_size;
502         if( stream_Tell( p_demux->s ) >= i_size )
503         {
504             msg_Err( p_demux, "Seeking too far : EOF?" );
505             return -1;
506         }
507     }
508
509     if( stream_Seek( p_demux->s, i_absolute ) )
510     {
511         return -1;
512     }
513
514     return stream_Tell( p_demux->s );
515 }
516
517 #endif /* HAVE_LIBAVFORMAT_AVFORMAT_H */