📄 video.c
字号:
/***************************************************************************** * video.c: video decoder using the ffmpeg library ***************************************************************************** * Copyright (C) 1999-2001 the VideoLAN team * $Id: cba209c7e631161135b3054d3c353d29fedb6ac7 $ * * 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_codec.h>#include <vlc_vout.h>#include <vlc_input.h> /* hmmm, just for INPUT_RATE_DEFAULT */#include <vlc_codecs.h> /* BITMAPINFOHEADER *//* ffmpeg header */#ifdef HAVE_LIBAVCODEC_AVCODEC_H# include <libavcodec/avcodec.h>#elif defined(HAVE_FFMPEG_AVCODEC_H)# include <ffmpeg/avcodec.h>#else# include <avcodec.h>#endif#include "avcodec.h"#include "chroma.h"/***************************************************************************** * decoder_sys_t : decoder descriptor *****************************************************************************/struct decoder_sys_t{ FFMPEG_COMMON_MEMBERS /* Video decoder specific part */ mtime_t input_pts; mtime_t input_dts; mtime_t i_pts; AVFrame *p_ff_pic; BITMAPINFOHEADER *p_format; /* for frame skipping algo */ int b_hurry_up; enum AVDiscard i_skip_frame; enum AVDiscard i_skip_idct; /* how many decoded frames are late */ int i_late_frames; mtime_t i_late_frames_start; /* for direct rendering */ int b_direct_rendering; bool b_has_b_frames; /* Hack to force display of still pictures */ bool b_first_frame; int i_buffer_orig, i_buffer; char *p_buffer_orig, *p_buffer; /* */ bool b_flush;};/* FIXME (dummy palette for now) */static const AVPaletteControl palette_control;/***************************************************************************** * Local prototypes *****************************************************************************/static void ffmpeg_InitCodec ( decoder_t * );static void ffmpeg_CopyPicture ( decoder_t *, picture_t *, AVFrame * );static int ffmpeg_GetFrameBuf ( struct AVCodecContext *, AVFrame * );static int ffmpeg_ReGetFrameBuf( struct AVCodecContext *, AVFrame * );static void ffmpeg_ReleaseFrameBuf( struct AVCodecContext *, AVFrame * );static void ffmpeg_NextPts( decoder_t *, int i_block_rate );static uint32_t ffmpeg_CodecTag( vlc_fourcc_t fcc ){ uint8_t *p = (uint8_t*)&fcc; return p[0] | (p[1] << 8) | (p[2] << 16) | (p[3] << 24);}/***************************************************************************** * Local Functions *****************************************************************************//* Returns a new picture buffer */static inline picture_t *ffmpeg_NewPictBuf( decoder_t *p_dec, AVCodecContext *p_context ){ picture_t *p_pic; p_dec->fmt_out.video.i_width = p_context->width; p_dec->fmt_out.video.i_height = p_context->height; if( !p_context->width || !p_context->height ) { return NULL; /* invalid display size */ } if( GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) != VLC_SUCCESS ) { /* we are doomed, but not really, because most codecs set their pix_fmt much later */ p_dec->fmt_out.i_codec = VLC_FOURCC('I','4','2','0'); } p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma; /* If an aspect-ratio was specified in the input format then force it */ if( p_dec->fmt_in.video.i_aspect ) { p_dec->fmt_out.video.i_aspect = p_dec->fmt_in.video.i_aspect; } else { p_dec->fmt_out.video.i_aspect = VOUT_ASPECT_FACTOR * ( av_q2d(p_context->sample_aspect_ratio) * p_context->width / p_context->height ); p_dec->fmt_out.video.i_sar_num = p_context->sample_aspect_ratio.num; p_dec->fmt_out.video.i_sar_den = p_context->sample_aspect_ratio.den; if( p_dec->fmt_out.video.i_aspect == 0 ) { p_dec->fmt_out.video.i_aspect = VOUT_ASPECT_FACTOR * p_context->width / p_context->height; } } if( p_dec->fmt_out.video.i_frame_rate > 0 && p_dec->fmt_out.video.i_frame_rate_base > 0 ) { p_dec->fmt_out.video.i_frame_rate = p_dec->fmt_in.video.i_frame_rate; p_dec->fmt_out.video.i_frame_rate_base = p_dec->fmt_in.video.i_frame_rate_base; } else if( p_context->time_base.num > 0 && p_context->time_base.den > 0 ) { p_dec->fmt_out.video.i_frame_rate = p_context->time_base.den; p_dec->fmt_out.video.i_frame_rate_base = p_context->time_base.num; } p_pic = p_dec->pf_vout_buffer_new( p_dec ); return p_pic;}/***************************************************************************** * InitVideo: initialize the video decoder ***************************************************************************** * the ffmpeg codec will be opened, some memory allocated. The vout is not yet * opened (done after the first decoded frame). *****************************************************************************/int InitVideoDec( decoder_t *p_dec, AVCodecContext *p_context, AVCodec *p_codec, int i_codec_id, const char *psz_namecodec ){ decoder_sys_t *p_sys; vlc_value_t val; /* Allocate the memory needed to store the decoder's structure */ if( ( p_dec->p_sys = p_sys = (decoder_sys_t *)malloc(sizeof(decoder_sys_t)) ) == NULL ) { return VLC_ENOMEM; } memset( p_sys, 0, sizeof(decoder_sys_t) ); p_dec->p_sys->p_context = p_context; p_dec->p_sys->p_codec = p_codec; p_dec->p_sys->i_codec_id = i_codec_id; p_dec->p_sys->psz_namecodec = psz_namecodec; p_sys->p_ff_pic = avcodec_alloc_frame(); /* ***** Fill p_context with init values ***** */ p_sys->p_context->codec_tag = ffmpeg_CodecTag( p_dec->fmt_in.i_codec ); p_sys->p_context->width = p_dec->fmt_in.video.i_width; p_sys->p_context->height = p_dec->fmt_in.video.i_height;#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0) p_sys->p_context->bits_per_sample = p_dec->fmt_in.video.i_bits_per_pixel;#else p_sys->p_context->bits_per_coded_sample = p_dec->fmt_in.video.i_bits_per_pixel;#endif /* ***** Get configuration of ffmpeg plugin ***** */ p_sys->p_context->workaround_bugs = config_GetInt( p_dec, "ffmpeg-workaround-bugs" );#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0) p_sys->p_context->error_resilience = config_GetInt( p_dec, "ffmpeg-error-resilience" );#else p_sys->p_context->error_recognition = config_GetInt( p_dec, "ffmpeg-error-resilience" );#endif var_Create( p_dec, "grayscale", VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); var_Get( p_dec, "grayscale", &val ); if( val.b_bool ) p_sys->p_context->flags |= CODEC_FLAG_GRAY; var_Create( p_dec, "ffmpeg-vismv", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT ); var_Get( p_dec, "ffmpeg-vismv", &val ); if( val.i_int ) p_sys->p_context->debug_mv = val.i_int; var_Create( p_dec, "ffmpeg-lowres", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT ); var_Get( p_dec, "ffmpeg-lowres", &val ); if( val.i_int > 0 && val.i_int <= 2 ) p_sys->p_context->lowres = val.i_int; var_Create( p_dec, "ffmpeg-skiploopfilter", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT ); var_Get( p_dec, "ffmpeg-skiploopfilter", &val ); if( val.i_int > 0 ) p_sys->p_context->skip_loop_filter = AVDISCARD_NONREF; if( val.i_int > 1 ) p_sys->p_context->skip_loop_filter = AVDISCARD_BIDIR; if( val.i_int > 2 ) p_sys->p_context->skip_loop_filter = AVDISCARD_NONKEY; if( val.i_int > 3 ) p_sys->p_context->skip_loop_filter = AVDISCARD_ALL; /* ***** ffmpeg frame skipping ***** */ var_Create( p_dec, "ffmpeg-hurry-up", VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); var_Get( p_dec, "ffmpeg-hurry-up", &val ); p_sys->b_hurry_up = val.b_bool; var_Create( p_dec, "ffmpeg-skip-frame", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT ); var_Get( p_dec, "ffmpeg-skip-frame", &val ); switch( val.i_int ) { case -1: p_sys->p_context->skip_frame = AVDISCARD_NONE; break; case 0: p_sys->p_context->skip_frame = AVDISCARD_DEFAULT; break; case 1: p_sys->p_context->skip_frame = AVDISCARD_BIDIR; break; case 2: p_sys->p_context->skip_frame = AVDISCARD_NONKEY; break; case 3: p_sys->p_context->skip_frame = AVDISCARD_ALL; break; default: p_sys->p_context->skip_frame = AVDISCARD_NONE; break; } p_sys->i_skip_frame = p_sys->p_context->skip_frame; var_Create( p_dec, "ffmpeg-skip-idct", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT ); var_Get( p_dec, "ffmpeg-skip-idct", &val ); switch( val.i_int ) { case -1: p_sys->p_context->skip_idct = AVDISCARD_NONE; break; case 0: p_sys->p_context->skip_idct = AVDISCARD_DEFAULT; break; case 1: p_sys->p_context->skip_idct = AVDISCARD_BIDIR; break; case 2: p_sys->p_context->skip_idct = AVDISCARD_NONKEY; break; case 3: p_sys->p_context->skip_idct = AVDISCARD_ALL; break; default: p_sys->p_context->skip_idct = AVDISCARD_NONE; break; } p_sys->i_skip_idct = p_sys->p_context->skip_idct; /* ***** ffmpeg direct rendering ***** */ p_sys->b_direct_rendering = 0; var_Create( p_dec, "ffmpeg-dr", VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); var_Get( p_dec, "ffmpeg-dr", &val ); if( val.b_bool && (p_sys->p_codec->capabilities & CODEC_CAP_DR1) && /* Apparently direct rendering doesn't work with YUV422P */ p_sys->p_context->pix_fmt != PIX_FMT_YUV422P && /* H264 uses too many reference frames */ p_sys->i_codec_id != CODEC_ID_H264 && !p_sys->p_context->debug_mv ) { /* Some codecs set pix_fmt only after the 1st frame has been decoded, * so we need to do another check in ffmpeg_GetFrameBuf() */ p_sys->b_direct_rendering = 1; } /* ffmpeg doesn't properly release old pictures when frames are skipped */ //if( p_sys->b_hurry_up ) p_sys->b_direct_rendering = 0; if( p_sys->b_direct_rendering ) { msg_Dbg( p_dec, "using direct rendering" ); p_sys->p_context->flags |= CODEC_FLAG_EMU_EDGE; } /* Always use our get_buffer wrapper so we can calculate the * PTS correctly */ p_sys->p_context->get_buffer = ffmpeg_GetFrameBuf; p_sys->p_context->reget_buffer = ffmpeg_ReGetFrameBuf; p_sys->p_context->release_buffer = ffmpeg_ReleaseFrameBuf; p_sys->p_context->opaque = p_dec; /* ***** init this codec with special data ***** */ ffmpeg_InitCodec( p_dec );
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -