diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-02-27 12:23:19 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-02-29 07:13:58 +0100 |
commit | af3d804f9feebe34ad3815c501fba795b801cdd0 (patch) | |
tree | 65ed35dc0e5c52318fcf5c9728b1dda1466a2cf6 /libavcodec/h263.h | |
parent | ff71a383ac884706903b2613d6f885021b69e552 (diff) | |
download | ffmpeg-af3d804f9feebe34ad3815c501fba795b801cdd0.tar.gz |
mpegvideo_enc: add cbp_rd flag to mpv_flags.
Deprecate CODEC_FLAG_CBP_RD.
Diffstat (limited to 'libavcodec/h263.h')
-rw-r--r-- | libavcodec/h263.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263.h b/libavcodec/h263.h index d26cf636eb..2a1ae4839d 100644 --- a/libavcodec/h263.h +++ b/libavcodec/h263.h @@ -148,7 +148,7 @@ static inline int get_p_cbp(MpegEncContext * s, int motion_x, int motion_y){ int cbp, i; - if(s->flags & CODEC_FLAG_CBP_RD){ + if (s->mpv_flags & FF_MPV_FLAG_CBP_RD) { int best_cbpy_score= INT_MAX; int best_cbpc_score= INT_MAX; int cbpc = (-1), cbpy= (-1); |