demux.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:23k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * demux.c: demuxer using ffmpeg (libavformat).
  3.  *****************************************************************************
  4.  * Copyright (C) 2004-2007 the VideoLAN team
  5.  * $Id: 717f9d97b9ee24ea4dc4e58da3951c912277c5bb $
  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.  * Preamble
  26.  *****************************************************************************/
  27. #ifdef HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include <vlc_common.h>
  31. #include <vlc_demux.h>
  32. #include <vlc_stream.h>
  33. #include <vlc_meta.h>
  34. #include <vlc_input.h>
  35. #include <vlc_charset.h>
  36. #include <vlc_avcodec.h>
  37. /* ffmpeg header */
  38. #if defined(HAVE_LIBAVFORMAT_AVFORMAT_H)
  39. #   include <libavformat/avformat.h>
  40. #elif defined(HAVE_FFMPEG_AVFORMAT_H)
  41. #   include <ffmpeg/avformat.h>
  42. #endif
  43. #include "../../codec/avcodec/avcodec.h"
  44. #include "avformat.h"
  45. //#define AVFORMAT_DEBUG 1
  46. /* Version checking */
  47. #if defined(HAVE_FFMPEG_AVFORMAT_H) || defined(HAVE_LIBAVFORMAT_AVFORMAT_H)
  48. #if (LIBAVCODEC_VERSION_INT >= ((51<<16)+(50<<8)+0) )
  49. #   define HAVE_FFMPEG_CODEC_ATTACHMENT 1
  50. #endif
  51. #if (LIBAVFORMAT_VERSION_INT >= ((52<<16)+(15<<8)+0) )
  52. #   define HAVE_FFMPEG_CHAPTERS 1
  53. #endif
  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.     AVInputFormat  *fmt;
  63.     AVFormatContext *ic;
  64.     URLContext     url;
  65.     URLProtocol    prot;
  66.     int             i_tk;
  67.     es_out_id_t     **tk;
  68.     int64_t     i_pcr;
  69.     int64_t     i_pcr_inc;
  70.     int         i_pcr_tk;
  71.     int                i_attachments;
  72.     input_attachment_t **attachments;
  73.     /* Only one title with seekpoints possible atm. */
  74.     input_title_t *p_title;
  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. static int IORead( void *opaque, uint8_t *buf, int buf_size );
  82. static int64_t IOSeek( void *opaque, int64_t offset, int whence );
  83. static void UpdateSeekPoint( demux_t *p_demux, int64_t i_time );
  84. /*****************************************************************************
  85.  * Open
  86.  *****************************************************************************/
  87. int OpenDemux( vlc_object_t *p_this )
  88. {
  89.     demux_t       *p_demux = (demux_t*)p_this;
  90.     demux_sys_t   *p_sys;
  91.     AVProbeData   pd;
  92.     AVInputFormat *fmt;
  93.     unsigned int  i;
  94.     int64_t       i_start_time = -1;
  95.     /* Init Probe data */
  96.     pd.filename = p_demux->psz_path;
  97.     if( ( pd.buf_size = stream_Peek( p_demux->s, &pd.buf, 2048 ) ) <= 0 )
  98.     {
  99.         msg_Warn( p_demux, "cannot peek" );
  100.         return VLC_EGENERIC;
  101.     }
  102.     av_register_all(); /* Can be called several times */
  103.     /* Guess format */
  104.     if( !( fmt = av_probe_input_format( &pd, 1 ) ) )
  105.     {
  106.         msg_Dbg( p_demux, "couldn't guess format" );
  107.         return VLC_EGENERIC;
  108.     }
  109.     /* Don't try to handle MPEG unless forced */
  110.     if( !p_demux->b_force &&
  111.         ( !strcmp( fmt->name, "mpeg" ) ||
  112.           !strcmp( fmt->name, "vcd" ) ||
  113.           !strcmp( fmt->name, "vob" ) ||
  114.           !strcmp( fmt->name, "mpegts" ) ||
  115.           /* libavformat's redirector won't work */
  116.           !strcmp( fmt->name, "redir" ) ||
  117.           !strcmp( fmt->name, "sdp" ) ) )
  118.     {
  119.         return VLC_EGENERIC;
  120.     }
  121.     /* Don't trigger false alarms on bin files */
  122.     if( !p_demux->b_force && !strcmp( fmt->name, "psxstr" ) )
  123.     {
  124.         int i_len;
  125.         if( !p_demux->psz_path ) return VLC_EGENERIC;
  126.         i_len = strlen( p_demux->psz_path );
  127.         if( i_len < 4 ) return VLC_EGENERIC;
  128.         if( strcasecmp( &p_demux->psz_path[i_len - 4], ".str" ) &&
  129.             strcasecmp( &p_demux->psz_path[i_len - 4], ".xai" ) &&
  130.             strcasecmp( &p_demux->psz_path[i_len - 3], ".xa" ) )
  131.         {
  132.             return VLC_EGENERIC;
  133.         }
  134.     }
  135.     msg_Dbg( p_demux, "detected format: %s", fmt->name );
  136.     /* Fill p_demux fields */
  137.     p_demux->pf_demux = Demux;
  138.     p_demux->pf_control = Control;
  139.     p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
  140.     p_sys->ic = 0;
  141.     p_sys->fmt = fmt;
  142.     p_sys->i_tk = 0;
  143.     p_sys->tk = NULL;
  144.     p_sys->i_pcr_tk = -1;
  145.     p_sys->i_pcr = -1;
  146.     TAB_INIT( p_sys->i_attachments, p_sys->attachments);
  147.     p_sys->p_title = NULL;
  148.     /* Create I/O wrapper */
  149.     p_sys->io_buffer_size = 32768;  /* FIXME */
  150.     p_sys->io_buffer = malloc( p_sys->io_buffer_size );
  151.     p_sys->url.priv_data = p_demux;
  152.     p_sys->url.prot = &p_sys->prot;
  153.     p_sys->url.prot->name = "VLC I/O wrapper";
  154.     p_sys->url.prot->url_open = 0;
  155.     p_sys->url.prot->url_read =
  156.                     (int (*) (URLContext *, unsigned char *, int))IORead;
  157.     p_sys->url.prot->url_write = 0;
  158.     p_sys->url.prot->url_seek =
  159.                     (int64_t (*) (URLContext *, int64_t, int))IOSeek;
  160.     p_sys->url.prot->url_close = 0;
  161.     p_sys->url.prot->next = 0;
  162.     init_put_byte( &p_sys->io, p_sys->io_buffer, p_sys->io_buffer_size,
  163.                    0, &p_sys->url, IORead, NULL, IOSeek );
  164.     /* Open it */
  165.     if( av_open_input_stream( &p_sys->ic, &p_sys->io, p_demux->psz_path,
  166.                               p_sys->fmt, NULL ) )
  167.     {
  168.         msg_Err( p_demux, "av_open_input_stream failed" );
  169.         CloseDemux( p_this );
  170.         return VLC_EGENERIC;
  171.     }
  172.     vlc_avcodec_lock(); /* avformat calls avcodec behind our back!!! */
  173.     if( av_find_stream_info( p_sys->ic ) < 0 )
  174.     {
  175.         vlc_avcodec_unlock();
  176.         msg_Err( p_demux, "av_find_stream_info failed" );
  177.         CloseDemux( p_this );
  178.         return VLC_EGENERIC;
  179.     }
  180.     vlc_avcodec_unlock();
  181.     for( i = 0; i < p_sys->ic->nb_streams; i++ )
  182.     {
  183.         AVCodecContext *cc = p_sys->ic->streams[i]->codec;
  184.         es_out_id_t  *es;
  185.         es_format_t  fmt;
  186.         vlc_fourcc_t fcc;
  187.         const char *psz_type = "unknown";
  188.         if( !GetVlcFourcc( cc->codec_id, NULL, &fcc, NULL ) )
  189.             fcc = VLC_FOURCC( 'u', 'n', 'd', 'f' );
  190.         switch( cc->codec_type )
  191.         {
  192.         case CODEC_TYPE_AUDIO:
  193.             es_format_Init( &fmt, AUDIO_ES, fcc );
  194.             fmt.audio.i_channels = cc->channels;
  195.             fmt.audio.i_rate = cc->sample_rate;
  196. #if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
  197.             fmt.audio.i_bitspersample = cc->bits_per_sample;
  198. #else
  199.             fmt.audio.i_bitspersample = cc->bits_per_coded_sample;
  200. #endif
  201.             fmt.audio.i_blockalign = cc->block_align;
  202.             psz_type = "audio";
  203.             break;
  204.         case CODEC_TYPE_VIDEO:
  205.             es_format_Init( &fmt, VIDEO_ES, fcc );
  206.             /* Special case for raw video data */
  207.             if( cc->codec_id == CODEC_ID_RAWVIDEO )
  208.             {
  209.                 msg_Dbg( p_demux, "raw video, pixel format: %i", cc->pix_fmt );
  210.                 if( GetVlcChroma( &fmt.video, cc->pix_fmt ) != VLC_SUCCESS)
  211.                 {
  212.                     msg_Err( p_demux, "was unable to find a FourCC match for raw video" );
  213.                 }
  214.                 else
  215.                     fmt.i_codec = fmt.video.i_chroma;
  216.             }
  217.             fmt.video.i_width = cc->width;
  218.             fmt.video.i_height = cc->height;
  219.             if( cc->palctrl )
  220.             {
  221.                 fmt.video.p_palette = malloc( sizeof(video_palette_t) );
  222.                 *fmt.video.p_palette = *(video_palette_t *)cc->palctrl;
  223.             }
  224.             psz_type = "video";
  225.             break;
  226.         case CODEC_TYPE_SUBTITLE:
  227.             es_format_Init( &fmt, SPU_ES, fcc );
  228.             psz_type = "subtitle";
  229.             break;
  230.         default:
  231.             es_format_Init( &fmt, UNKNOWN_ES, 0 );
  232. #ifdef HAVE_FFMPEG_CODEC_ATTACHMENT
  233.             if( cc->codec_type == CODEC_TYPE_ATTACHMENT )
  234.             {
  235.                 input_attachment_t *p_attachment;
  236.                 psz_type = "attachment";
  237.                 if( cc->codec_id == CODEC_ID_TTF )
  238.                 {
  239.                     p_attachment = vlc_input_attachment_New( p_sys->ic->streams[i]->filename, "application/x-truetype-font", NULL,
  240.                                              cc->extradata, (int)cc->extradata_size );
  241.                     TAB_APPEND( p_sys->i_attachments, p_sys->attachments, p_attachment );
  242.                 }
  243.                 else msg_Warn( p_demux, "unsupported attachment type in ffmpeg demux" );
  244.             }
  245.             break;
  246. #endif
  247.             if( cc->codec_type == CODEC_TYPE_DATA )
  248.                 psz_type = "data";
  249.             msg_Warn( p_demux, "unsupported track type in ffmpeg demux" );
  250.             break;
  251.         }
  252.         fmt.psz_language = p_sys->ic->streams[i]->language;
  253. #ifdef HAVE_FFMPEG_CODEC_ATTACHMENT
  254.         if( cc->codec_type != CODEC_TYPE_ATTACHMENT )
  255. #endif
  256.         {
  257.             fmt.i_extra = cc->extradata_size;
  258.             fmt.p_extra = cc->extradata;
  259.         }
  260.         es = es_out_Add( p_demux->out, &fmt );
  261.         msg_Dbg( p_demux, "adding es: %s codec = %4.4s",
  262.                  psz_type, (char*)&fcc );
  263.         TAB_APPEND( p_sys->i_tk, p_sys->tk, es );
  264.     }
  265.     if( p_sys->ic->start_time != (int64_t)AV_NOPTS_VALUE )
  266.         i_start_time = p_sys->ic->start_time * 1000000 / AV_TIME_BASE;
  267.     msg_Dbg( p_demux, "AVFormat supported stream" );
  268.     msg_Dbg( p_demux, "    - format = %s (%s)",
  269.              p_sys->fmt->name, p_sys->fmt->long_name );
  270.     msg_Dbg( p_demux, "    - start time = %"PRId64, i_start_time );
  271.     msg_Dbg( p_demux, "    - duration = %"PRId64,
  272.              ( p_sys->ic->duration != (int64_t)AV_NOPTS_VALUE ) ?
  273.              p_sys->ic->duration * 1000000 / AV_TIME_BASE : -1 );
  274. #ifdef HAVE_FFMPEG_CHAPTERS
  275.     if( p_sys->ic->nb_chapters > 0 )
  276.         p_sys->p_title = vlc_input_title_New();
  277.     for( i = 0; i < p_sys->ic->nb_chapters; i++ )
  278.     {
  279.         seekpoint_t *s = vlc_seekpoint_New();
  280.         if( p_sys->ic->chapters[i]->title )
  281.         {
  282.             s->psz_name = strdup( p_sys->ic->chapters[i]->title );
  283.             EnsureUTF8( s->psz_name );
  284.             msg_Dbg( p_demux, "    - chapter %d: %s", i, s->psz_name );
  285.         }
  286.         s->i_time_offset = p_sys->ic->chapters[i]->start * 1000000 *
  287.             p_sys->ic->chapters[i]->time_base.num /
  288.             p_sys->ic->chapters[i]->time_base.den -
  289.             (i_start_time != -1 ? i_start_time : 0 );
  290.         TAB_APPEND( p_sys->p_title->i_seekpoint, p_sys->p_title->seekpoint, s );
  291.     }
  292. #endif
  293.     return VLC_SUCCESS;
  294. }
  295. /*****************************************************************************
  296.  * Close
  297.  *****************************************************************************/
  298. void CloseDemux( vlc_object_t *p_this )
  299. {
  300.     demux_t     *p_demux = (demux_t*)p_this;
  301.     demux_sys_t *p_sys = p_demux->p_sys;
  302.     FREENULL( p_sys->tk );
  303.     if( p_sys->ic ) av_close_input_stream( p_sys->ic );
  304.     for( int i = 0; i < p_sys->i_attachments; i++ )
  305.         free( p_sys->attachments[i] );
  306.     TAB_CLEAN( p_sys->i_attachments, p_sys->attachments);
  307.     if( p_sys->p_title )
  308.         vlc_input_title_Delete( p_sys->p_title );
  309.     free( p_sys->io_buffer );
  310.     free( p_sys );
  311. }
  312. /*****************************************************************************
  313.  * Demux:
  314.  *****************************************************************************/
  315. static int Demux( demux_t *p_demux )
  316. {
  317.     demux_sys_t *p_sys = p_demux->p_sys;
  318.     AVPacket    pkt;
  319.     block_t     *p_frame;
  320.     int64_t     i_start_time;
  321.     /* Read a frame */
  322.     if( av_read_frame( p_sys->ic, &pkt ) )
  323.     {
  324.         return 0;
  325.     }
  326.     if( pkt.stream_index < 0 || pkt.stream_index >= p_sys->i_tk )
  327.     {
  328.         av_free_packet( &pkt );
  329.         return 1;
  330.     }
  331.     const AVStream *p_stream = p_sys->ic->streams[pkt.stream_index];
  332.     if( ( p_frame = block_New( p_demux, pkt.size ) ) == NULL )
  333.     {
  334.         return 0;
  335.     }
  336.     memcpy( p_frame->p_buffer, pkt.data, pkt.size );
  337.     if( pkt.flags & PKT_FLAG_KEY )
  338.         p_frame->i_flags |= BLOCK_FLAG_TYPE_I;
  339.     i_start_time = ( p_sys->ic->start_time != (int64_t)AV_NOPTS_VALUE ) ?
  340.         ( p_sys->ic->start_time * 1000000 / AV_TIME_BASE )  : 0;
  341.     p_frame->i_dts = ( pkt.dts == (int64_t)AV_NOPTS_VALUE ) ?
  342.         0 : (pkt.dts) * 1000000 *
  343.         p_stream->time_base.num /
  344.         p_stream->time_base.den - i_start_time;
  345.     p_frame->i_pts = ( pkt.pts == (int64_t)AV_NOPTS_VALUE ) ?
  346.         0 : (pkt.pts) * 1000000 *
  347.         p_stream->time_base.num /
  348.         p_stream->time_base.den - i_start_time;
  349.     if( pkt.duration > 0 )
  350.         p_frame->i_length = pkt.duration * 1000000 *
  351.             p_stream->time_base.num /
  352.             p_stream->time_base.den - i_start_time;
  353.     if( pkt.dts != AV_NOPTS_VALUE && pkt.dts == pkt.pts &&
  354.         p_stream->codec->codec_type == CODEC_TYPE_VIDEO )
  355.     {
  356.         /* Add here notoriously bugged file formats/samples regarding PTS */
  357.         if( !strcmp( p_sys->fmt->name, "flv" ) )
  358.             p_frame->i_pts = 0;
  359.     }
  360. #ifdef AVFORMAT_DEBUG
  361.     msg_Dbg( p_demux, "tk[%d] dts=%"PRId64" pts=%"PRId64,
  362.              pkt.stream_index, p_frame->i_dts, p_frame->i_pts );
  363. #endif
  364.     if( pkt.dts > 0  &&
  365.         ( pkt.stream_index == p_sys->i_pcr_tk || p_sys->i_pcr_tk < 0 ) )
  366.     {
  367.         p_sys->i_pcr_tk = pkt.stream_index;
  368.         p_sys->i_pcr = p_frame->i_dts;
  369.         es_out_Control( p_demux->out, ES_OUT_SET_PCR, (int64_t)p_sys->i_pcr );
  370.     }
  371.     es_out_Send( p_demux->out, p_sys->tk[pkt.stream_index], p_frame );
  372.     UpdateSeekPoint( p_demux, p_sys->i_pcr);
  373.     av_free_packet( &pkt );
  374.     return 1;
  375. }
  376. static void UpdateSeekPoint( demux_t *p_demux, int64_t i_time )
  377. {
  378.     demux_sys_t *p_sys = p_demux->p_sys;
  379.     int i;
  380.     if( !p_sys->p_title )
  381.         return;
  382.     for( i = 0; i < p_sys->p_title->i_seekpoint; i++ )
  383.     {
  384.         if( i_time < p_sys->p_title->seekpoint[i]->i_time_offset )
  385.             break;
  386.     }
  387.     i--;
  388.     if( i != p_demux->info.i_seekpoint && i >= 0 )
  389.     {
  390.         p_demux->info.i_seekpoint = i;
  391.         p_demux->info.i_update |= INPUT_UPDATE_SEEKPOINT;
  392.     }
  393. }
  394. /*****************************************************************************
  395.  * Control:
  396.  *****************************************************************************/
  397. static int Control( demux_t *p_demux, int i_query, va_list args )
  398. {
  399.     demux_sys_t *p_sys = p_demux->p_sys;
  400.     double f, *pf;
  401.     int64_t i64, *pi64;
  402.     switch( i_query )
  403.     {
  404.         case DEMUX_GET_POSITION:
  405.             pf = (double*) va_arg( args, double* ); *pf = 0.0;
  406.             i64 = stream_Size( p_demux->s );
  407.             if( i64 > 0 )
  408.             {
  409.                 *pf = (double)stream_Tell( p_demux->s ) / (double)i64;
  410.             }
  411.             if( (p_sys->ic->duration != (int64_t)AV_NOPTS_VALUE) && (p_sys->i_pcr > 0) )
  412.             {
  413.                 *pf = (double)p_sys->i_pcr / (double)p_sys->ic->duration;
  414.             }
  415.             return VLC_SUCCESS;
  416.         case DEMUX_SET_POSITION:
  417.             f = (double) va_arg( args, double );
  418.             i64 = stream_Tell( p_demux->s );
  419.             if( p_sys->i_pcr > 0 )
  420.             {
  421.                 i64 = p_sys->ic->duration * f;
  422.                 if( p_sys->ic->start_time != (int64_t)AV_NOPTS_VALUE )
  423.                     i64 += p_sys->ic->start_time;
  424.                 msg_Warn( p_demux, "DEMUX_SET_POSITION: %"PRId64, i64 );
  425.                 /* If we have a duration, we prefer to seek by time
  426.                    but if we don't, or if the seek fails, try BYTE seeking */
  427.                 if( p_sys->ic->duration == (int64_t)AV_NOPTS_VALUE ||
  428.                     (av_seek_frame( p_sys->ic, -1, i64, 0 ) < 0) )
  429.                 {
  430.                     int64_t i_size = stream_Size( p_demux->s );
  431.                     msg_Warn( p_demux, "DEMUX_SET_BYTE_POSITION: %"PRId64, i64 );
  432.                     if( av_seek_frame( p_sys->ic, -1, (i_size * f), AVSEEK_FLAG_BYTE ) < 0 )
  433.                         return VLC_EGENERIC;
  434.                 }
  435.                 UpdateSeekPoint( p_demux, i64 );
  436.                 p_sys->i_pcr = -1; /* Invalidate time display */
  437.             }
  438.             return VLC_SUCCESS;
  439.         case DEMUX_GET_LENGTH:
  440.             pi64 = (int64_t*)va_arg( args, int64_t * );
  441.             if( p_sys->ic->duration != (int64_t)AV_NOPTS_VALUE )
  442.             {
  443.                 *pi64 = p_sys->ic->duration;
  444.             }
  445.             else *pi64 = 0;
  446.             return VLC_SUCCESS;
  447.         case DEMUX_GET_TIME:
  448.             pi64 = (int64_t*)va_arg( args, int64_t * );
  449.             *pi64 = p_sys->i_pcr;
  450.             return VLC_SUCCESS;
  451.         case DEMUX_SET_TIME:
  452.             i64 = (int64_t)va_arg( args, int64_t );
  453.             i64 = i64 *AV_TIME_BASE / 1000000;
  454.             if( p_sys->ic->start_time != (int64_t)AV_NOPTS_VALUE )
  455.                 i64 += p_sys->ic->start_time;
  456.             msg_Warn( p_demux, "DEMUX_SET_TIME: %"PRId64, i64 );
  457.             if( av_seek_frame( p_sys->ic, -1, i64, 0 ) < 0 )
  458.             {
  459.                 return VLC_EGENERIC;
  460.             }
  461.             p_sys->i_pcr = -1; /* Invalidate time display */
  462.             UpdateSeekPoint( p_demux, i64 );
  463.             return VLC_SUCCESS;
  464.         case DEMUX_HAS_UNSUPPORTED_META:
  465.         {
  466.             bool *pb_bool = (bool*)va_arg( args, bool* );
  467.             *pb_bool = true;
  468.             return VLC_SUCCESS;
  469.         }
  470.         case DEMUX_GET_META:
  471.         {
  472.             vlc_meta_t *p_meta = (vlc_meta_t*)va_arg( args, vlc_meta_t* );
  473.             if( !p_sys->ic->title[0] || !p_sys->ic->author[0] ||
  474.                 !p_sys->ic->copyright[0] || !p_sys->ic->comment[0] ||
  475.                 /*!p_sys->ic->album[0] ||*/ !p_sys->ic->genre[0] )
  476.             {
  477.                 return VLC_EGENERIC;
  478.             }
  479.             if( p_sys->ic->title[0] )
  480.                 vlc_meta_SetTitle( p_meta, p_sys->ic->title );
  481.             if( p_sys->ic->author[0] )
  482.                 vlc_meta_SetArtist( p_meta, p_sys->ic->author );
  483.             if( p_sys->ic->copyright[0] )
  484.                 vlc_meta_SetCopyright( p_meta, p_sys->ic->copyright );
  485.             if( p_sys->ic->comment[0] )
  486.                 vlc_meta_SetDescription( p_meta, p_sys->ic->comment );
  487.             if( p_sys->ic->genre[0] )
  488.                 vlc_meta_SetGenre( p_meta, p_sys->ic->genre );
  489.             return VLC_SUCCESS;
  490.         }
  491.         case DEMUX_GET_ATTACHMENTS:
  492.         {
  493.             input_attachment_t ***ppp_attach =
  494.                 (input_attachment_t***)va_arg( args, input_attachment_t*** );
  495.             int *pi_int = (int*)va_arg( args, int * );
  496.             int i;
  497.             if( p_sys->i_attachments <= 0 )
  498.                 return VLC_EGENERIC;
  499.             *pi_int = p_sys->i_attachments;;
  500.             *ppp_attach = malloc( sizeof(input_attachment_t**) * p_sys->i_attachments );
  501.             for( i = 0; i < p_sys->i_attachments; i++ )
  502.                 (*ppp_attach)[i] = vlc_input_attachment_Duplicate( p_sys->attachments[i] );
  503.             return VLC_SUCCESS;
  504.         }
  505.         case DEMUX_GET_TITLE_INFO:
  506.         {
  507.             input_title_t ***ppp_title = (input_title_t***)va_arg( args, input_title_t*** );
  508.             int *pi_int    = (int*)va_arg( args, int* );
  509.             int *pi_title_offset = (int*)va_arg( args, int* );
  510.             int *pi_seekpoint_offset = (int*)va_arg( args, int* );
  511.             if( !p_sys->p_title )
  512.                 return VLC_EGENERIC;
  513.             *pi_int = 1;
  514.             *ppp_title = malloc( sizeof( input_title_t**) );
  515.             (*ppp_title)[0] = vlc_input_title_Duplicate( p_sys->p_title );
  516.             *pi_title_offset = 0;
  517.             *pi_seekpoint_offset = 0;
  518.             return VLC_SUCCESS;
  519.         }
  520.         case DEMUX_SET_TITLE:
  521.         {
  522.             const int i_title = (int)va_arg( args, int );
  523.             if( !p_sys->p_title || i_title != 0 )
  524.                 return VLC_EGENERIC;
  525.             return VLC_SUCCESS;
  526.         }
  527.         case DEMUX_SET_SEEKPOINT:
  528.         {
  529.             const int i_seekpoint = (int)va_arg( args, int );
  530.             if( !p_sys->p_title )
  531.                 return VLC_EGENERIC;
  532.             i64 = p_sys->p_title->seekpoint[i_seekpoint]->i_time_offset *AV_TIME_BASE / 1000000;
  533.             if( p_sys->ic->start_time != (int64_t)AV_NOPTS_VALUE )
  534.                 i64 += p_sys->ic->start_time;
  535.             msg_Warn( p_demux, "DEMUX_SET_TIME: %"PRId64, i64 );
  536.             if( av_seek_frame( p_sys->ic, -1, i64, 0 ) < 0 )
  537.             {
  538.                 return VLC_EGENERIC;
  539.             }
  540.             p_sys->i_pcr = -1; /* Invalidate time display */
  541.             UpdateSeekPoint( p_demux, i64 );
  542.             return VLC_SUCCESS;
  543.         }
  544.         default:
  545.             return VLC_EGENERIC;
  546.     }
  547. }
  548. /*****************************************************************************
  549.  * I/O wrappers for libavformat
  550.  *****************************************************************************/
  551. static int IORead( void *opaque, uint8_t *buf, int buf_size )
  552. {
  553.     URLContext *p_url = opaque;
  554.     demux_t *p_demux = p_url->priv_data;
  555.     if( buf_size < 0 ) return -1;
  556.     int i_ret = stream_Read( p_demux->s, buf, buf_size );
  557.     return i_ret ? i_ret : -1;
  558. }
  559. static int64_t IOSeek( void *opaque, int64_t offset, int whence )
  560. {
  561.     URLContext *p_url = opaque;
  562.     demux_t *p_demux = p_url->priv_data;
  563.     int64_t i_absolute = (int64_t)offset;
  564.     int64_t i_size = stream_Size( p_demux->s );
  565. #ifdef AVFORMAT_DEBUG
  566.     msg_Warn( p_demux, "IOSeek offset: %"PRId64", whence: %i", offset, whence );
  567. #endif
  568.     switch( whence )
  569.     {
  570. #ifdef AVSEEK_SIZE
  571.         case AVSEEK_SIZE:
  572.             return i_size;
  573. #endif
  574.         case SEEK_SET:
  575.             i_absolute = (int64_t)offset;
  576.             break;
  577.         case SEEK_CUR:
  578.             i_absolute = stream_Tell( p_demux->s ) + (int64_t)offset;
  579.             break;
  580.         case SEEK_END:
  581.             i_absolute = i_size + (int64_t)offset;
  582.             break;
  583.         default:
  584.             return -1;
  585.     }
  586.     if( i_absolute < 0 )
  587.     {
  588.         msg_Dbg( p_demux, "Trying to seek before the beginning" );
  589.         return -1;
  590.     }
  591.     if( i_size > 0 && i_absolute >= i_size )
  592.     {
  593.         msg_Dbg( p_demux, "Trying to seek too far : EOF?" );
  594.         return -1;
  595.     }
  596.     if( stream_Seek( p_demux->s, i_absolute ) )
  597.     {
  598.         msg_Warn( p_demux, "we were not allowed to seek, or EOF " );
  599.         return -1;
  600.     }
  601.     return stream_Tell( p_demux->s );
  602. }
  603. #endif /* HAVE_LIBAVFORMAT_AVFORMAT_H */