]> git.sesse.net Git - vlc/blob - modules/demux/avformat/demux.c
Cosmetics.
[vlc] / modules / demux / avformat / demux.c
1 /*****************************************************************************
2  * demux.c: demuxer using ffmpeg (libavformat).
3  *****************************************************************************
4  * Copyright (C) 2004-2009 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_common.h>
34 #include <vlc_demux.h>
35 #include <vlc_stream.h>
36 #include <vlc_meta.h>
37 #include <vlc_input.h>
38 #include <vlc_charset.h>
39 #include <vlc_avcodec.h>
40
41 /* ffmpeg header */
42 #if defined(HAVE_LIBAVFORMAT_AVFORMAT_H)
43 #   include <libavformat/avformat.h>
44 #elif defined(HAVE_FFMPEG_AVFORMAT_H)
45 #   include <ffmpeg/avformat.h>
46 #endif
47
48 #include "../../codec/avcodec/avcodec.h"
49 #include "avformat.h"
50 #include "../xiph.h"
51 #include "../vobsub.h"
52
53 //#define AVFORMAT_DEBUG 1
54
55 /* Version checking */
56 #if defined(HAVE_FFMPEG_AVFORMAT_H) || defined(HAVE_LIBAVFORMAT_AVFORMAT_H)
57
58 #if (LIBAVCODEC_VERSION_INT >= ((51<<16)+(50<<8)+0) )
59 #   define HAVE_FFMPEG_CODEC_ATTACHMENT 1
60 #endif
61
62 #if (LIBAVFORMAT_VERSION_INT >= ((52<<16)+(15<<8)+0) )
63 #   define HAVE_FFMPEG_CHAPTERS 1
64 #endif
65
66 /*****************************************************************************
67  * demux_sys_t: demux descriptor
68  *****************************************************************************/
69 struct demux_sys_t
70 {
71     ByteIOContext   io;
72     int             io_buffer_size;
73     uint8_t        *io_buffer;
74
75     AVInputFormat  *fmt;
76     AVFormatContext *ic;
77     URLContext     url;
78     URLProtocol    prot;
79
80     int             i_tk;
81     es_out_id_t     **tk;
82
83     int64_t     i_pcr;
84     int64_t     i_pcr_inc;
85     int         i_pcr_tk;
86
87     int                i_attachments;
88     input_attachment_t **attachments;
89
90     /* Only one title with seekpoints possible atm. */
91     input_title_t *p_title;
92 };
93
94 /*****************************************************************************
95  * Local prototypes
96  *****************************************************************************/
97 static int Demux  ( demux_t *p_demux );
98 static int Control( demux_t *p_demux, int i_query, va_list args );
99
100 static int IORead( void *opaque, uint8_t *buf, int buf_size );
101 static int64_t IOSeek( void *opaque, int64_t offset, int whence );
102
103 static void UpdateSeekPoint( demux_t *p_demux, int64_t i_time );
104
105 /*****************************************************************************
106  * Open
107  *****************************************************************************/
108 int OpenDemux( vlc_object_t *p_this )
109 {
110     demux_t       *p_demux = (demux_t*)p_this;
111     demux_sys_t   *p_sys;
112     AVProbeData   pd;
113     AVInputFormat *fmt;
114     unsigned int  i;
115     int64_t       i_start_time = -1;
116
117     /* Init Probe data */
118     pd.filename = p_demux->psz_path;
119     if( ( pd.buf_size = stream_Peek( p_demux->s, &pd.buf, 2048 + 213 ) ) <= 0 )
120     {
121         msg_Warn( p_demux, "cannot peek" );
122         return VLC_EGENERIC;
123     }
124
125     vlc_avcodec_lock();
126     av_register_all(); /* Can be called several times */
127     vlc_avcodec_unlock();
128
129     /* Guess format */
130     if( !( fmt = av_probe_input_format( &pd, 1 ) ) )
131     {
132         msg_Dbg( p_demux, "couldn't guess format" );
133         return VLC_EGENERIC;
134     }
135
136     /* Don't try to handle MPEG unless forced */
137     if( !p_demux->b_force &&
138         ( !strcmp( fmt->name, "mpeg" ) ||
139           !strcmp( fmt->name, "vcd" ) ||
140           !strcmp( fmt->name, "vob" ) ||
141           !strcmp( fmt->name, "mpegts" ) ||
142           /* libavformat's redirector won't work */
143           !strcmp( fmt->name, "redir" ) ||
144           !strcmp( fmt->name, "sdp" ) ) )
145     {
146         return VLC_EGENERIC;
147     }
148
149     /* Don't trigger false alarms on bin files */
150     if( !p_demux->b_force && !strcmp( fmt->name, "psxstr" ) )
151     {
152         int i_len;
153
154         if( !p_demux->psz_path ) return VLC_EGENERIC;
155
156         i_len = strlen( p_demux->psz_path );
157         if( i_len < 4 ) return VLC_EGENERIC;
158
159         if( strcasecmp( &p_demux->psz_path[i_len - 4], ".str" ) &&
160             strcasecmp( &p_demux->psz_path[i_len - 4], ".xai" ) &&
161             strcasecmp( &p_demux->psz_path[i_len - 3], ".xa" ) )
162         {
163             return VLC_EGENERIC;
164         }
165     }
166
167     msg_Dbg( p_demux, "detected format: %s", fmt->name );
168
169     /* Fill p_demux fields */
170     p_demux->pf_demux = Demux;
171     p_demux->pf_control = Control;
172     p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
173     p_sys->ic = 0;
174     p_sys->fmt = fmt;
175     p_sys->i_tk = 0;
176     p_sys->tk = NULL;
177     p_sys->i_pcr_tk = -1;
178     p_sys->i_pcr = -1;
179     TAB_INIT( p_sys->i_attachments, p_sys->attachments);
180     p_sys->p_title = NULL;
181
182     /* Create I/O wrapper */
183     p_sys->io_buffer_size = 32768;  /* FIXME */
184     p_sys->io_buffer = malloc( p_sys->io_buffer_size );
185     p_sys->url.priv_data = p_demux;
186     p_sys->url.prot = &p_sys->prot;
187     p_sys->url.prot->name = "VLC I/O wrapper";
188     p_sys->url.prot->url_open = 0;
189     p_sys->url.prot->url_read =
190                     (int (*) (URLContext *, unsigned char *, int))IORead;
191     p_sys->url.prot->url_write = 0;
192     p_sys->url.prot->url_seek =
193                     (int64_t (*) (URLContext *, int64_t, int))IOSeek;
194     p_sys->url.prot->url_close = 0;
195     p_sys->url.prot->next = 0;
196     init_put_byte( &p_sys->io, p_sys->io_buffer, p_sys->io_buffer_size,
197                    0, &p_sys->url, IORead, NULL, IOSeek );
198
199     /* Open it */
200     if( av_open_input_stream( &p_sys->ic, &p_sys->io, p_demux->psz_path,
201                               p_sys->fmt, NULL ) )
202     {
203         msg_Err( p_demux, "av_open_input_stream failed" );
204         CloseDemux( p_this );
205         return VLC_EGENERIC;
206     }
207
208     vlc_avcodec_lock(); /* avformat calls avcodec behind our back!!! */
209     if( av_find_stream_info( p_sys->ic ) < 0 )
210     {
211         vlc_avcodec_unlock();
212         msg_Warn( p_demux, "av_find_stream_info failed" );
213     }
214     vlc_avcodec_unlock();
215
216     for( i = 0; i < p_sys->ic->nb_streams; i++ )
217     {
218         AVStream *s = p_sys->ic->streams[i];
219         AVCodecContext *cc = s->codec;
220
221         es_out_id_t  *es;
222         es_format_t  fmt;
223         vlc_fourcc_t fcc;
224         const char *psz_type = "unknown";
225
226         if( !GetVlcFourcc( cc->codec_id, NULL, &fcc, NULL ) )
227             fcc = VLC_FOURCC( 'u', 'n', 'd', 'f' );
228
229         switch( cc->codec_type )
230         {
231         case CODEC_TYPE_AUDIO:
232             es_format_Init( &fmt, AUDIO_ES, fcc );
233             fmt.i_bitrate = cc->bit_rate;
234             fmt.audio.i_channels = cc->channels;
235             fmt.audio.i_rate = cc->sample_rate;
236 #if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
237             fmt.audio.i_bitspersample = cc->bits_per_sample;
238 #else
239             fmt.audio.i_bitspersample = cc->bits_per_coded_sample;
240 #endif
241             fmt.audio.i_blockalign = cc->block_align;
242             psz_type = "audio";
243             break;
244
245         case CODEC_TYPE_VIDEO:
246             es_format_Init( &fmt, VIDEO_ES, fcc );
247
248             /* Special case for raw video data */
249             if( cc->codec_id == CODEC_ID_RAWVIDEO )
250             {
251                 msg_Dbg( p_demux, "raw video, pixel format: %i", cc->pix_fmt );
252                 if( GetVlcChroma( &fmt.video, cc->pix_fmt ) != VLC_SUCCESS)
253                 {
254                     msg_Err( p_demux, "was unable to find a FourCC match for raw video" );
255                 }
256                 else
257                     fmt.i_codec = fmt.video.i_chroma;
258             }
259
260             fmt.video.i_width = cc->width;
261             fmt.video.i_height = cc->height;
262             if( cc->palctrl )
263             {
264                 fmt.video.p_palette = malloc( sizeof(video_palette_t) );
265                 *fmt.video.p_palette = *(video_palette_t *)cc->palctrl;
266             }
267             psz_type = "video";
268             break;
269
270         case CODEC_TYPE_SUBTITLE:
271             es_format_Init( &fmt, SPU_ES, fcc );
272             if( strncmp( p_sys->ic->iformat->name, "matroska", 8 ) == 0 &&
273                 cc->codec_id == CODEC_ID_DVD_SUBTITLE &&
274                 cc->extradata != NULL &&
275                 cc->extradata_size > 0 )
276             {
277                 char *psz_start;
278                 char *psz_buf = malloc( cc->extradata_size + 1);
279                 if( psz_buf != NULL )
280                 {
281                     memcpy( psz_buf, cc->extradata , cc->extradata_size );
282                     psz_buf[cc->extradata_size] = '\0';
283
284                     psz_start = strstr( psz_buf, "size:" );
285                     if( psz_start &&
286                         vobsub_size_parse( psz_start,
287                                            &fmt.subs.spu.i_original_frame_width,
288                                            &fmt.subs.spu.i_original_frame_height ) == VLC_SUCCESS )
289                     {
290                         msg_Dbg( p_demux, "original frame size: %dx%d",
291                                  fmt.subs.spu.i_original_frame_width,
292                                  fmt.subs.spu.i_original_frame_height );
293                     }
294                     else
295                     {
296                         msg_Warn( p_demux, "reading original frame size failed" );
297                     }
298
299                     psz_start = strstr( psz_buf, "palette:" );
300                     if( psz_start &&
301                         vobsub_palette_parse( psz_start, &fmt.subs.spu.palette[1] ) == VLC_SUCCESS )
302                     {
303                         fmt.subs.spu.palette[0] =  0xBeef;
304                         msg_Dbg( p_demux, "vobsub palette read" );
305                     }
306                     else
307                     {
308                         msg_Warn( p_demux, "reading original palette failed" );
309                     }
310                     free( psz_buf );
311                 }
312             }
313
314             psz_type = "subtitle";
315             break;
316
317         default:
318             es_format_Init( &fmt, UNKNOWN_ES, 0 );
319 #ifdef HAVE_FFMPEG_CODEC_ATTACHMENT
320             if( cc->codec_type == CODEC_TYPE_ATTACHMENT )
321             {
322                 input_attachment_t *p_attachment;
323                 psz_type = "attachment";
324                 if( cc->codec_id == CODEC_ID_TTF )
325                 {
326                     p_attachment = vlc_input_attachment_New( s->filename, "application/x-truetype-font", NULL,
327                                              cc->extradata, (int)cc->extradata_size );
328                     TAB_APPEND( p_sys->i_attachments, p_sys->attachments, p_attachment );
329                 }
330                 else msg_Warn( p_demux, "unsupported attachment type in ffmpeg demux" );
331             }
332             break;
333 #endif
334
335             if( cc->codec_type == CODEC_TYPE_DATA )
336                 psz_type = "data";
337
338             msg_Warn( p_demux, "unsupported track type in ffmpeg demux" );
339             break;
340         }
341         fmt.psz_language = strdup( s->language );
342
343 #ifdef HAVE_FFMPEG_CODEC_ATTACHMENT
344         if( cc->codec_type != CODEC_TYPE_ATTACHMENT )
345 #endif
346         {
347             const bool    b_ogg = !strcmp( p_sys->fmt->name, "ogg" );
348             const uint8_t *p_extra = cc->extradata;
349             unsigned      i_extra  = cc->extradata_size;
350
351             if( cc->codec_id == CODEC_ID_THEORA && b_ogg )
352             {
353                 unsigned pi_size[3];
354                 void     *pp_data[3];
355                 unsigned i_count;
356                 for( i_count = 0; i_count < 3; i_count++ )
357                 {
358                     if( i_extra < 2 )
359                         break;
360                     pi_size[i_count] = GetWBE( p_extra );
361                     pp_data[i_count] = (uint8_t*)&p_extra[2];
362                     if( i_extra < pi_size[i_count] + 2 )
363                         break;
364
365                     p_extra += 2 + pi_size[i_count];
366                     i_extra -= 2 + pi_size[i_count];
367                 }
368                 if( i_count > 0 && xiph_PackHeaders( &fmt.i_extra, &fmt.p_extra,
369                                                      pi_size, pp_data, i_count ) )
370                 {
371                     fmt.i_extra = 0;
372                     fmt.p_extra = NULL;
373                 }
374             }
375             else if( cc->codec_id == CODEC_ID_SPEEX && b_ogg )
376             {
377                 uint8_t p_dummy_comment[] = {
378                     0, 0, 0, 0,
379                     0, 0, 0, 0,
380                 };
381                 unsigned pi_size[2];
382                 void     *pp_data[2];
383
384                 pi_size[0] = i_extra;
385                 pp_data[0] = (uint8_t*)p_extra;
386
387                 pi_size[1] = sizeof(p_dummy_comment);
388                 pp_data[1] = p_dummy_comment;
389
390                 if( pi_size[0] > 0 && xiph_PackHeaders( &fmt.i_extra, &fmt.p_extra,
391                                                         pi_size, pp_data, 2 ) )
392                 {
393                     fmt.i_extra = 0;
394                     fmt.p_extra = NULL;
395                 }
396             }
397             else if( cc->extradata_size > 0 )
398             {
399                 fmt.p_extra = malloc( i_extra );
400                 if( fmt.p_extra )
401                 {
402                     fmt.i_extra = i_extra;
403                     memcpy( fmt.p_extra, p_extra, i_extra );
404                 }
405             }
406         }
407         es = es_out_Add( p_demux->out, &fmt );
408         es_format_Clean( &fmt );
409
410         msg_Dbg( p_demux, "adding es: %s codec = %4.4s",
411                  psz_type, (char*)&fcc );
412         TAB_APPEND( p_sys->i_tk, p_sys->tk, es );
413     }
414     if( p_sys->ic->start_time != (int64_t)AV_NOPTS_VALUE )
415         i_start_time = p_sys->ic->start_time * 1000000 / AV_TIME_BASE;
416
417     msg_Dbg( p_demux, "AVFormat supported stream" );
418     msg_Dbg( p_demux, "    - format = %s (%s)",
419              p_sys->fmt->name, p_sys->fmt->long_name );
420     msg_Dbg( p_demux, "    - start time = %"PRId64, i_start_time );
421     msg_Dbg( p_demux, "    - duration = %"PRId64,
422              ( p_sys->ic->duration != (int64_t)AV_NOPTS_VALUE ) ?
423              p_sys->ic->duration * 1000000 / AV_TIME_BASE : -1 );
424
425 #ifdef HAVE_FFMPEG_CHAPTERS
426     if( p_sys->ic->nb_chapters > 0 )
427         p_sys->p_title = vlc_input_title_New();
428     for( i = 0; i < p_sys->ic->nb_chapters; i++ )
429     {
430         seekpoint_t *s = vlc_seekpoint_New();
431
432         if( p_sys->ic->chapters[i]->title )
433         {
434             s->psz_name = strdup( p_sys->ic->chapters[i]->title );
435             EnsureUTF8( s->psz_name );
436             msg_Dbg( p_demux, "    - chapter %d: %s", i, s->psz_name );
437         }
438         s->i_time_offset = p_sys->ic->chapters[i]->start * 1000000 *
439             p_sys->ic->chapters[i]->time_base.num /
440             p_sys->ic->chapters[i]->time_base.den -
441             (i_start_time != -1 ? i_start_time : 0 );
442         TAB_APPEND( p_sys->p_title->i_seekpoint, p_sys->p_title->seekpoint, s );
443     }
444 #endif
445
446     return VLC_SUCCESS;
447 }
448
449 /*****************************************************************************
450  * Close
451  *****************************************************************************/
452 void CloseDemux( vlc_object_t *p_this )
453 {
454     demux_t     *p_demux = (demux_t*)p_this;
455     demux_sys_t *p_sys = p_demux->p_sys;
456
457     FREENULL( p_sys->tk );
458
459     if( p_sys->ic ) av_close_input_stream( p_sys->ic );
460
461     for( int i = 0; i < p_sys->i_attachments; i++ )
462         free( p_sys->attachments[i] );
463     TAB_CLEAN( p_sys->i_attachments, p_sys->attachments);
464
465     if( p_sys->p_title )
466         vlc_input_title_Delete( p_sys->p_title );
467
468     free( p_sys->io_buffer );
469     free( p_sys );
470 }
471
472 /*****************************************************************************
473  * Demux:
474  *****************************************************************************/
475 static int Demux( demux_t *p_demux )
476 {
477     demux_sys_t *p_sys = p_demux->p_sys;
478     AVPacket    pkt;
479     block_t     *p_frame;
480     int64_t     i_start_time;
481
482     /* Read a frame */
483     if( av_read_frame( p_sys->ic, &pkt ) )
484     {
485         return 0;
486     }
487     if( pkt.stream_index < 0 || pkt.stream_index >= p_sys->i_tk )
488     {
489         av_free_packet( &pkt );
490         return 1;
491     }
492     const AVStream *p_stream = p_sys->ic->streams[pkt.stream_index];
493
494     if( ( p_frame = block_New( p_demux, pkt.size ) ) == NULL )
495     {
496         return 0;
497     }
498
499     memcpy( p_frame->p_buffer, pkt.data, pkt.size );
500
501     if( pkt.flags & PKT_FLAG_KEY )
502         p_frame->i_flags |= BLOCK_FLAG_TYPE_I;
503
504     i_start_time = ( p_sys->ic->start_time != (int64_t)AV_NOPTS_VALUE ) ?
505         ( p_sys->ic->start_time * 1000000 / AV_TIME_BASE )  : 0;
506
507     p_frame->i_dts = ( pkt.dts == (int64_t)AV_NOPTS_VALUE ) ?
508         VLC_TS_INVALID : (pkt.dts) * 1000000 *
509         p_stream->time_base.num /
510         p_stream->time_base.den - i_start_time + VLC_TS_0;
511     p_frame->i_pts = ( pkt.pts == (int64_t)AV_NOPTS_VALUE ) ?
512         VLC_TS_INVALID : (pkt.pts) * 1000000 *
513         p_stream->time_base.num /
514         p_stream->time_base.den - i_start_time + VLC_TS_0;
515     if( pkt.duration > 0 )
516         p_frame->i_length = pkt.duration * 1000000 *
517             p_stream->time_base.num /
518             p_stream->time_base.den - i_start_time;
519
520     if( pkt.dts != AV_NOPTS_VALUE && pkt.dts == pkt.pts &&
521         p_stream->codec->codec_type == CODEC_TYPE_VIDEO )
522     {
523         /* Add here notoriously bugged file formats/samples regarding PTS */
524         if( !strcmp( p_sys->fmt->name, "flv" ) )
525             p_frame->i_pts = VLC_TS_INVALID;
526     }
527 #ifdef AVFORMAT_DEBUG
528     msg_Dbg( p_demux, "tk[%d] dts=%"PRId64" pts=%"PRId64,
529              pkt.stream_index, p_frame->i_dts, p_frame->i_pts );
530 #endif
531
532     if( p_frame->i_dts > VLC_TS_INVALID  &&
533         ( pkt.stream_index == p_sys->i_pcr_tk || p_sys->i_pcr_tk < 0 ) )
534     {
535         p_sys->i_pcr_tk = pkt.stream_index;
536         p_sys->i_pcr = p_frame->i_dts;
537
538         es_out_Control( p_demux->out, ES_OUT_SET_PCR, (int64_t)p_sys->i_pcr );
539     }
540
541     es_out_Send( p_demux->out, p_sys->tk[pkt.stream_index], p_frame );
542
543     UpdateSeekPoint( p_demux, p_sys->i_pcr);
544     av_free_packet( &pkt );
545     return 1;
546 }
547
548 static void UpdateSeekPoint( demux_t *p_demux, int64_t i_time )
549 {
550     demux_sys_t *p_sys = p_demux->p_sys;
551     int i;
552
553     if( !p_sys->p_title )
554         return;
555
556     for( i = 0; i < p_sys->p_title->i_seekpoint; i++ )
557     {
558         if( i_time < p_sys->p_title->seekpoint[i]->i_time_offset )
559             break;
560     }
561     i--;
562
563     if( i != p_demux->info.i_seekpoint && i >= 0 )
564     {
565         p_demux->info.i_seekpoint = i;
566         p_demux->info.i_update |= INPUT_UPDATE_SEEKPOINT;
567     }
568 }
569
570 /*****************************************************************************
571  * Control:
572  *****************************************************************************/
573 static int Control( demux_t *p_demux, int i_query, va_list args )
574 {
575     demux_sys_t *p_sys = p_demux->p_sys;
576     double f, *pf;
577     int64_t i64, *pi64;
578
579     switch( i_query )
580     {
581         case DEMUX_GET_POSITION:
582             pf = (double*) va_arg( args, double* ); *pf = 0.0;
583             i64 = stream_Size( p_demux->s );
584             if( i64 > 0 )
585             {
586                 double current = stream_Tell( p_demux->s );
587                 *pf = current / (double)i64;
588             }
589
590             if( (p_sys->ic->duration != (int64_t)AV_NOPTS_VALUE) && (p_sys->i_pcr > 0) )
591             {
592                 *pf = (double)p_sys->i_pcr / (double)p_sys->ic->duration;
593             }
594
595             return VLC_SUCCESS;
596
597         case DEMUX_SET_POSITION:
598             f = (double) va_arg( args, double );
599             if( p_sys->i_pcr > 0 )
600             {
601                 i64 = p_sys->ic->duration * f;
602                 if( p_sys->ic->start_time != (int64_t)AV_NOPTS_VALUE )
603                     i64 += p_sys->ic->start_time;
604
605                 msg_Warn( p_demux, "DEMUX_SET_POSITION: %"PRId64, i64 );
606
607                 /* If we have a duration, we prefer to seek by time
608                    but if we don't, or if the seek fails, try BYTE seeking */
609                 if( p_sys->ic->duration == (int64_t)AV_NOPTS_VALUE ||
610                     (av_seek_frame( p_sys->ic, -1, i64, 0 ) < 0) )
611                 {
612                     int64_t i_size = stream_Size( p_demux->s );
613                     i64 = (i_size * f);
614
615                     msg_Warn( p_demux, "DEMUX_SET_BYTE_POSITION: %"PRId64, i64 );
616                     if( av_seek_frame( p_sys->ic, -1, i64, AVSEEK_FLAG_BYTE ) < 0 )
617                         return VLC_EGENERIC;
618                 }
619                 else
620                 {
621                     UpdateSeekPoint( p_demux, i64 );
622                 }
623                 p_sys->i_pcr = -1; /* Invalidate time display */
624             }
625             return VLC_SUCCESS;
626
627         case DEMUX_GET_LENGTH:
628             pi64 = (int64_t*)va_arg( args, int64_t * );
629             if( p_sys->ic->duration != (int64_t)AV_NOPTS_VALUE )
630             {
631                 *pi64 = p_sys->ic->duration;
632             }
633             else *pi64 = 0;
634             return VLC_SUCCESS;
635
636         case DEMUX_GET_TIME:
637             pi64 = (int64_t*)va_arg( args, int64_t * );
638             *pi64 = p_sys->i_pcr;
639             return VLC_SUCCESS;
640
641         case DEMUX_SET_TIME:
642             i64 = (int64_t)va_arg( args, int64_t );
643             i64 = i64 *AV_TIME_BASE / 1000000;
644             if( p_sys->ic->start_time != (int64_t)AV_NOPTS_VALUE )
645                 i64 += p_sys->ic->start_time;
646
647             msg_Warn( p_demux, "DEMUX_SET_TIME: %"PRId64, i64 );
648
649             if( av_seek_frame( p_sys->ic, -1, i64, 0 ) < 0 )
650             {
651                 return VLC_EGENERIC;
652             }
653             p_sys->i_pcr = -1; /* Invalidate time display */
654             UpdateSeekPoint( p_demux, i64 );
655             return VLC_SUCCESS;
656
657         case DEMUX_HAS_UNSUPPORTED_META:
658         {
659             bool *pb_bool = (bool*)va_arg( args, bool* );
660             *pb_bool = true;
661             return VLC_SUCCESS;
662         }
663
664
665         case DEMUX_GET_META:
666         {
667             vlc_meta_t *p_meta = (vlc_meta_t*)va_arg( args, vlc_meta_t* );
668
669             if( !p_sys->ic->title[0] || !p_sys->ic->author[0] ||
670                 !p_sys->ic->copyright[0] || !p_sys->ic->comment[0] ||
671                 /*!p_sys->ic->album[0] ||*/ !p_sys->ic->genre[0] )
672             {
673                 return VLC_EGENERIC;
674             }
675
676             if( p_sys->ic->title[0] )
677                 vlc_meta_SetTitle( p_meta, p_sys->ic->title );
678             if( p_sys->ic->author[0] )
679                 vlc_meta_SetArtist( p_meta, p_sys->ic->author );
680             if( p_sys->ic->copyright[0] )
681                 vlc_meta_SetCopyright( p_meta, p_sys->ic->copyright );
682             if( p_sys->ic->comment[0] )
683                 vlc_meta_SetDescription( p_meta, p_sys->ic->comment );
684             if( p_sys->ic->genre[0] )
685                 vlc_meta_SetGenre( p_meta, p_sys->ic->genre );
686             return VLC_SUCCESS;
687         }
688
689         case DEMUX_GET_ATTACHMENTS:
690         {
691             input_attachment_t ***ppp_attach =
692                 (input_attachment_t***)va_arg( args, input_attachment_t*** );
693             int *pi_int = (int*)va_arg( args, int * );
694             int i;
695
696             if( p_sys->i_attachments <= 0 )
697                 return VLC_EGENERIC;
698
699             *pi_int = p_sys->i_attachments;;
700             *ppp_attach = malloc( sizeof(input_attachment_t**) * p_sys->i_attachments );
701             for( i = 0; i < p_sys->i_attachments; i++ )
702                 (*ppp_attach)[i] = vlc_input_attachment_Duplicate( p_sys->attachments[i] );
703             return VLC_SUCCESS;
704         }
705
706         case DEMUX_GET_TITLE_INFO:
707         {
708             input_title_t ***ppp_title = (input_title_t***)va_arg( args, input_title_t*** );
709             int *pi_int    = (int*)va_arg( args, int* );
710             int *pi_title_offset = (int*)va_arg( args, int* );
711             int *pi_seekpoint_offset = (int*)va_arg( args, int* );
712
713             if( !p_sys->p_title )
714                 return VLC_EGENERIC;
715
716             *pi_int = 1;
717             *ppp_title = malloc( sizeof( input_title_t**) );
718             (*ppp_title)[0] = vlc_input_title_Duplicate( p_sys->p_title );
719             *pi_title_offset = 0;
720             *pi_seekpoint_offset = 0;
721             return VLC_SUCCESS;
722         }
723         case DEMUX_SET_TITLE:
724         {
725             const int i_title = (int)va_arg( args, int );
726             if( !p_sys->p_title || i_title != 0 )
727                 return VLC_EGENERIC;
728             return VLC_SUCCESS;
729         }
730         case DEMUX_SET_SEEKPOINT:
731         {
732             const int i_seekpoint = (int)va_arg( args, int );
733             if( !p_sys->p_title )
734                 return VLC_EGENERIC;
735
736             i64 = p_sys->p_title->seekpoint[i_seekpoint]->i_time_offset *AV_TIME_BASE / 1000000;
737             if( p_sys->ic->start_time != (int64_t)AV_NOPTS_VALUE )
738                 i64 += p_sys->ic->start_time;
739
740             msg_Warn( p_demux, "DEMUX_SET_TIME: %"PRId64, i64 );
741
742             if( av_seek_frame( p_sys->ic, -1, i64, 0 ) < 0 )
743             {
744                 return VLC_EGENERIC;
745             }
746             p_sys->i_pcr = -1; /* Invalidate time display */
747             UpdateSeekPoint( p_demux, i64 );
748             return VLC_SUCCESS;
749         }
750
751
752         default:
753             return VLC_EGENERIC;
754     }
755 }
756
757 /*****************************************************************************
758  * I/O wrappers for libavformat
759  *****************************************************************************/
760 static int IORead( void *opaque, uint8_t *buf, int buf_size )
761 {
762     URLContext *p_url = opaque;
763     demux_t *p_demux = p_url->priv_data;
764     if( buf_size < 0 ) return -1;
765     int i_ret = stream_Read( p_demux->s, buf, buf_size );
766     return i_ret ? i_ret : -1;
767 }
768
769 static int64_t IOSeek( void *opaque, int64_t offset, int whence )
770 {
771     URLContext *p_url = opaque;
772     demux_t *p_demux = p_url->priv_data;
773     int64_t i_absolute;
774     int64_t i_size = stream_Size( p_demux->s );
775
776 #ifdef AVFORMAT_DEBUG
777     msg_Warn( p_demux, "IOSeek offset: %"PRId64", whence: %i", offset, whence );
778 #endif
779
780     switch( whence )
781     {
782 #ifdef AVSEEK_SIZE
783         case AVSEEK_SIZE:
784             return i_size;
785 #endif
786         case SEEK_SET:
787             i_absolute = (int64_t)offset;
788             break;
789         case SEEK_CUR:
790             i_absolute = stream_Tell( p_demux->s ) + (int64_t)offset;
791             break;
792         case SEEK_END:
793             i_absolute = i_size + (int64_t)offset;
794             break;
795         default:
796             return -1;
797
798     }
799
800     if( i_absolute < 0 )
801     {
802         msg_Dbg( p_demux, "Trying to seek before the beginning" );
803         return -1;
804     }
805
806     if( i_size > 0 && i_absolute >= i_size )
807     {
808         msg_Dbg( p_demux, "Trying to seek too far : EOF?" );
809         return -1;
810     }
811
812     if( stream_Seek( p_demux->s, i_absolute ) )
813     {
814         msg_Warn( p_demux, "we were not allowed to seek, or EOF " );
815         return -1;
816     }
817
818     return stream_Tell( p_demux->s );
819 }
820
821 #endif /* HAVE_LIBAVFORMAT_AVFORMAT_H */