aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/mpegvideo.c
diff options
context:
space:
mode:
authorJuanjo <pulento@users.sourceforge.net>2001-08-28 23:32:34 +0000
committerJuanjo <pulento@users.sourceforge.net>2001-08-28 23:32:34 +0000
commit6dbd39fe70f094ab178bc788369379e2229dd630 (patch)
treec911daf7e26a25146f16c933b1c9a62ad8d33bce /libavcodec/mpegvideo.c
parent6bbc662f7d78e5ea0256e9354b9965c93286919f (diff)
downloadffmpeg-6dbd39fe70f094ab178bc788369379e2229dd630.tar.gz
Added support to Unrestricted Motion Vectors (UMV)
on H.263+ encoding/decoding. According to Annex D. Now MV on H.263+ are 32x32 long. Originally committed as revision 113 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r--libavcodec/mpegvideo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index ea7979bb82..6fd2a01fd7 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -277,7 +277,7 @@ int MPV_encode_init(AVCodecContext *avctx)
case CODEC_ID_H263P:
s->out_format = FMT_H263;
s->h263_plus = 1;
- /* XXX: not unrectricted mv yet */
+ s->unrestricted_mv = 1;
break;
case CODEC_ID_RV10:
s->out_format = FMT_H263;