1
mirror of https://github.com/mpv-player/mpv synced 2024-07-31 16:29:58 +02:00

Add support for libavcodec GMC flag, patch by Dave Baker, dbkr mxtelecom com.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28415 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2009-02-01 02:10:31 +00:00
parent 5e63efb850
commit 56d9a23ee9
2 changed files with 9 additions and 0 deletions

View File

@ -9102,6 +9102,10 @@ Currently it only works if scene change detection is disabled
(sc_threshold=1000000000).
.
.TP
.B "gmc\ \ \ \ "
Enable Global Motion Compensation.
.
.TP
.B (no)lowdelay
Sets the low delay flag for MPEG-1/2 (disables B-frames).
.

View File

@ -113,6 +113,7 @@ static int lavc_param_bit_exact = 0;
static int lavc_param_aic= 0;
static int lavc_param_aiv= 0;
static int lavc_param_umv= 0;
static int lavc_param_gmc= 0;
static int lavc_param_obmc= 0;
static int lavc_param_loop= 0;
static int lavc_param_last_pred= 0;
@ -282,6 +283,9 @@ m_option_t lavcopts_conf[]={
#endif
#ifdef CODEC_FLAG_CLOSED_GOP
{"cgop", &lavc_param_closed_gop, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_CLOSED_GOP, NULL},
#endif
#ifdef CODEC_FLAG_GMC
{"gmc", &lavc_param_gmc, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_GMC, NULL},
#endif
{"dc", &lavc_param_dc_precision, CONF_TYPE_INT, CONF_RANGE, 8, 11, NULL},
{"border_mask", &lavc_param_border_masking, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL},
@ -555,6 +559,7 @@ static int config(struct vf_instance_s* vf,
lavc_venc_context->flags|= lavc_param_ss;
lavc_venc_context->flags|= lavc_param_alt;
lavc_venc_context->flags|= lavc_param_ilme;
lavc_venc_context->flags|= lavc_param_gmc;
#ifdef CODEC_FLAG_CLOSED_GOP
lavc_venc_context->flags|= lavc_param_closed_gop;
#endif