aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/mpegvideo.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-11-29 08:37:51 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-11-29 08:37:51 +0000
commitdba019dabab2314d00e30b8d53a5ae46de711953 (patch)
tree2db9e7aecbaaace4bdb20191662ad559c87a5f5f /libavcodec/mpegvideo.c
parentcc15c9312782e260fdebb895a8f5ecef4ac7f806 (diff)
downloadffmpeg-dba019dabab2314d00e30b8d53a5ae46de711953.tar.gz
h263 alternative inter vlc support
Originally committed as revision 2541 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r--libavcodec/mpegvideo.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index 1186d34e96..1fe94e729e 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -779,6 +779,7 @@ int MPV_encode_init(AVCodecContext *avctx)
/* Fx */
s->unrestricted_mv=(avctx->flags & CODEC_FLAG_H263P_UMV) ? 1:0;
s->h263_aic= (avctx->flags & CODEC_FLAG_H263P_AIC) ? 1:0;
+ s->alt_inter_vlc= (avctx->flags & CODEC_FLAG_H263P_AIV) ? 1:0;
/* /Fx */
/* These are just to be sure */
s->umvplus = 1;