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

📄 demux.c

📁 video linux conference
💻 C
📖 第 1 页 / 共 2 页
字号:
/***************************************************************************** * demux.c: demuxer using ffmpeg (libavformat). ***************************************************************************** * Copyright (C) 2004 VideoLAN * $Id: demux.c 10101 2005-03-02 16:47:31Z robux4 $ * * 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., 59 Temple Place - Suite 330, Boston, MA  02111, USA. *****************************************************************************//***************************************************************************** * Preamble *****************************************************************************/#include <stdlib.h>                                      /* malloc(), free() */#include <vlc/vlc.h>#include <vlc/input.h>#include "vlc_meta.h"/* ffmpeg header */#ifdef HAVE_FFMPEG_AVCODEC_H#   include <ffmpeg/avformat.h>#else#   include <avformat.h>#endif#include "ffmpeg.h"//#define AVFORMAT_DEBUG 1/* Version checking */#if (LIBAVFORMAT_BUILD >= 4611) && defined(HAVE_LIBAVFORMAT)#if LIBAVFORMAT_BUILD < 4619#   define av_seek_frame(a,b,c,d) av_seek_frame(a,b,c)#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 int IOSeek( void *opaque, offset_t offset, int whence );/***************************************************************************** * Open *****************************************************************************/int E_(OpenDemux)( vlc_object_t *p_this ){    demux_t       *p_demux = (demux_t*)p_this;    demux_sys_t   *p_sys;    AVProbeData   pd;    AVInputFormat *fmt;    int i;    /* 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 - 4], ".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 );    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" );        E_(CloseDemux)( p_this );        return VLC_EGENERIC;    }    if( av_find_stream_info( p_sys->ic ) )    {        msg_Err( p_demux, "av_find_stream_info failed" );        E_(CloseDemux)( p_this );        return VLC_EGENERIC;    }    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;        if( !E_(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;            fmt.audio.i_bitspersample = cc->bits_per_sample;            fmt.audio.i_blockalign = cc->block_align;            break;        case CODEC_TYPE_VIDEO:            es_format_Init( &fmt, VIDEO_ES, fcc );            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;            }            break;        default:            break;        }        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",                 cc->codec_type == CODEC_TYPE_AUDIO ? "audio" : "video",                 (char*)&fcc );        TAB_APPEND( p_sys->i_tk, p_sys->tk, es );    }    msg_Dbg( p_demux, "AVFormat supported stream" );    msg_Dbg( p_demux, "    - format = %s (%s)",             p_sys->fmt->name, p_sys->fmt->long_name );    msg_Dbg( p_demux, "    - start time = "I64Fd,             ( p_sys->ic->start_time != AV_NOPTS_VALUE ) ?             p_sys->ic->start_time * 1000000 / AV_TIME_BASE : -1 );    msg_Dbg( p_demux, "    - duration = "I64Fd,             ( p_sys->ic->duration != AV_NOPTS_VALUE ) ?             p_sys->ic->duration * 1000000 / AV_TIME_BASE : -1 );

⌨️ 快捷键说明

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