diff options
author | Jason Garrett-Glaser <darkshikari@gmail.com> | 2008-10-02 19:05:35 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2008-10-02 19:05:35 +0000 |
commit | a5d24133458c790d0c1922346ead9a2a4e59920d (patch) | |
tree | ef390a0979bd9534e51194d1e03363fd1662a5fa /libavcodec/libx264.c | |
parent | 3defa81fc4b5134f4969a610fde6c40518f682c9 (diff) | |
download | ffmpeg-a5d24133458c790d0c1922346ead9a2a4e59920d.tar.gz |
x264 has removed the b-rdo and bime options, and instead integrated
them into the subme number to attempt to reduce the number of
unnecessary options. subme now scales up to 9.
Patch by Jason Garett-Glaser %darkshikari A gmail P com%
Originally committed as revision 15523 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/libx264.c')
-rw-r--r-- | libavcodec/libx264.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c index 894e614844..4f7280b6d3 100644 --- a/libavcodec/libx264.c +++ b/libavcodec/libx264.c @@ -227,8 +227,6 @@ X264_init(AVCodecContext *avctx) x4->params.analyse.i_me_range = avctx->me_range; x4->params.analyse.i_subpel_refine = avctx->me_subpel_quality; - x4->params.analyse.b_bidir_me = avctx->bidir_refine > 0; - x4->params.analyse.b_bframe_rdo = avctx->flags2 & CODEC_FLAG2_BRDO; x4->params.analyse.b_mixed_references = avctx->flags2 & CODEC_FLAG2_MIXED_REFS; x4->params.analyse.b_chroma_me = avctx->me_cmp & FF_CMP_CHROMA; |