⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 demux.c

📁 VLC Player Source Code
💻 C
📖 第 1 页 / 共 2 页
字号:
/***************************************************************************** * demux.c: demuxer using ffmpeg (libavformat). ***************************************************************************** * Copyright (C) 2004-2007 the VideoLAN team * $Id$ * * Authors: Laurent Aimar <fenrir@via.ecp.fr> *          Gildas Bazin <gbazin@videolan.org> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************//***************************************************************************** * Preamble *****************************************************************************/#ifdef HAVE_CONFIG_H# include "config.h"#endif#include <vlc_common.h>#include <vlc_demux.h>#include <vlc_stream.h>#include <vlc_meta.h>/* ffmpeg header */#if defined(HAVE_LIBAVFORMAT_AVFORMAT_H)#   include <libavformat/avformat.h>#elif defined(HAVE_FFMPEG_AVFORMAT_H)#   include <ffmpeg/avformat.h>#endif#include "../../codec/avcodec/fourcc.h"#include "../../codec/avcodec/chroma.h"#include "avformat.h"//#define AVFORMAT_DEBUG 1/* Version checking */#if defined(HAVE_FFMPEG_AVFORMAT_H) || defined(HAVE_LIBAVFORMAT_AVFORMAT_H)#if (LIBAVCODEC_VERSION_INT >= ((51<<16)+(50<<8)+0) )#   define HAVE_FFMPEG_CODEC_ATTACHMENT 1#endif/***************************************************************************** * demux_sys_t: demux descriptor *****************************************************************************/struct demux_sys_t{    ByteIOContext   io;    int             io_buffer_size;    uint8_t        *io_buffer;    AVInputFormat  *fmt;    AVFormatContext *ic;    URLContext     url;    URLProtocol    prot;    int             i_tk;    es_out_id_t     **tk;    int64_t     i_pcr;    int64_t     i_pcr_inc;    int         i_pcr_tk;};/***************************************************************************** * Local prototypes *****************************************************************************/static int Demux  ( demux_t *p_demux );static int Control( demux_t *p_demux, int i_query, va_list args );static int IORead( void *opaque, uint8_t *buf, int buf_size );static offset_t IOSeek( void *opaque, offset_t offset, int whence );/***************************************************************************** * Open *****************************************************************************/int OpenDemux( vlc_object_t *p_this ){    demux_t       *p_demux = (demux_t*)p_this;    demux_sys_t   *p_sys;    AVProbeData   pd;    AVInputFormat *fmt;    unsigned int i;    bool b_avfmt_nofile;    /* Init Probe data */    pd.filename = p_demux->psz_path;    if( ( pd.buf_size = stream_Peek( p_demux->s, &pd.buf, 2048 ) ) <= 0 )    {        msg_Warn( p_demux, "cannot peek" );        return VLC_EGENERIC;    }    av_register_all(); /* Can be called several times */    /* Guess format */    if( !( fmt = av_probe_input_format( &pd, 1 ) ) )    {        msg_Dbg( p_demux, "couldn't guess format" );        return VLC_EGENERIC;    }    /* Don't try to handle MPEG unless forced */    if( !p_demux->b_force &&        ( !strcmp( fmt->name, "mpeg" ) ||          !strcmp( fmt->name, "vcd" ) ||          !strcmp( fmt->name, "vob" ) ||          !strcmp( fmt->name, "mpegts" ) ||          /* libavformat's redirector won't work */          !strcmp( fmt->name, "redir" ) ||          !strcmp( fmt->name, "sdp" ) ) )    {        return VLC_EGENERIC;    }    /* Don't trigger false alarms on bin files */    if( !p_demux->b_force && !strcmp( fmt->name, "psxstr" ) )    {        int i_len;        if( !p_demux->psz_path ) return VLC_EGENERIC;        i_len = strlen( p_demux->psz_path );        if( i_len < 4 ) return VLC_EGENERIC;        if( strcasecmp( &p_demux->psz_path[i_len - 4], ".str" ) &&            strcasecmp( &p_demux->psz_path[i_len - 4], ".xai" ) &&            strcasecmp( &p_demux->psz_path[i_len - 3], ".xa" ) )        {            return VLC_EGENERIC;        }    }    msg_Dbg( p_demux, "detected format: %s", fmt->name );    /* Fill p_demux fields */    p_demux->pf_demux = Demux;    p_demux->pf_control = Control;    p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );    p_sys->ic = 0;    p_sys->fmt = fmt;    p_sys->i_tk = 0;    p_sys->tk = NULL;    p_sys->i_pcr_tk = -1;    p_sys->i_pcr = -1;    /* Create I/O wrapper */    p_sys->io_buffer_size = 32768;  /* FIXME */    p_sys->io_buffer = malloc( p_sys->io_buffer_size );    p_sys->url.priv_data = p_demux;    p_sys->url.prot = &p_sys->prot;    p_sys->url.prot->name = "VLC I/O wrapper";    p_sys->url.prot->url_open = 0;    p_sys->url.prot->url_read =                    (int (*) (URLContext *, unsigned char *, int))IORead;    p_sys->url.prot->url_write = 0;    p_sys->url.prot->url_seek =                    (offset_t (*) (URLContext *, offset_t, int))IOSeek;    p_sys->url.prot->url_close = 0;    p_sys->url.prot->next = 0;    init_put_byte( &p_sys->io, p_sys->io_buffer, p_sys->io_buffer_size,                   0, &p_sys->url, IORead, NULL, IOSeek );    b_avfmt_nofile = p_sys->fmt->flags & AVFMT_NOFILE;    p_sys->fmt->flags |= AVFMT_NOFILE; /* libavformat must not fopen/fclose */    /* Open it */    if( av_open_input_stream( &p_sys->ic, &p_sys->io, p_demux->psz_path,                              p_sys->fmt, NULL ) )    {        msg_Err( p_demux, "av_open_input_stream failed" );        if( !b_avfmt_nofile ) p_sys->fmt->flags ^= AVFMT_NOFILE;        CloseDemux( p_this );        return VLC_EGENERIC;    }    if( av_find_stream_info( p_sys->ic ) < 0 )    {        msg_Err( p_demux, "av_find_stream_info failed" );        if( !b_avfmt_nofile ) p_sys->fmt->flags ^= AVFMT_NOFILE;        CloseDemux( p_this );        return VLC_EGENERIC;    }    if( !b_avfmt_nofile ) p_sys->fmt->flags ^= AVFMT_NOFILE;    for( i = 0; i < p_sys->ic->nb_streams; i++ )    {        AVCodecContext *cc = p_sys->ic->streams[i]->codec;        es_out_id_t  *es;        es_format_t  fmt;        vlc_fourcc_t fcc;        const char *psz_type = "unknown";        if( !GetVlcFourcc( cc->codec_id, NULL, &fcc, NULL ) )            fcc = VLC_FOURCC( 'u', 'n', 'd', 'f' );        switch( cc->codec_type )        {        case CODEC_TYPE_AUDIO:            es_format_Init( &fmt, AUDIO_ES, fcc );            fmt.audio.i_channels = cc->channels;            fmt.audio.i_rate = cc->sample_rate;#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)            fmt.audio.i_bitspersample = cc->bits_per_sample;#else            fmt.audio.i_bitspersample = cc->bits_per_coded_sample;#endif            fmt.audio.i_blockalign = cc->block_align;            psz_type = "audio";            break;        case CODEC_TYPE_VIDEO:            es_format_Init( &fmt, VIDEO_ES, fcc );            /* Special case for raw video data */            if( cc->codec_id == CODEC_ID_RAWVIDEO )            {                msg_Dbg( p_demux, "raw video, pixel format: %i", cc->pix_fmt );                if( GetVlcChroma( &fmt.video, cc->pix_fmt ) != VLC_SUCCESS)                {                    msg_Err( p_demux, "was unable to find a FourCC match for raw video" );                }                else                    fmt.i_codec = fmt.video.i_chroma;            }            fmt.video.i_width = cc->width;            fmt.video.i_height = cc->height;            if( cc->palctrl )            {                fmt.video.p_palette = malloc( sizeof(video_palette_t) );                *fmt.video.p_palette = *(video_palette_t *)cc->palctrl;            }            psz_type = "video";            break;        case CODEC_TYPE_SUBTITLE:            es_format_Init( &fmt, SPU_ES, fcc );            psz_type = "subtitle";            break;        default:            es_format_Init( &fmt, UNKNOWN_ES, 0 );            if( cc->codec_type == CODEC_TYPE_DATA )                psz_type = "data";#ifdef HAVE_FFMPEG_CODEC_ATTACHMENT            else if( cc->codec_type == CODEC_TYPE_ATTACHMENT )                psz_type = "attachment";#endif            msg_Warn( p_demux, "unsupported track type in ffmpeg demux" );            break;        }        fmt.psz_language = strdup( p_sys->ic->streams[i]->language );        fmt.i_extra = cc->extradata_size;        fmt.p_extra = cc->extradata;        es = es_out_Add( p_demux->out, &fmt );        msg_Dbg( p_demux, "adding es: %s codec = %4.4s",

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -