diff options
author | Juanjo <pulento@users.sourceforge.net> | 2001-08-28 23:32:34 +0000 |
---|---|---|
committer | Juanjo <pulento@users.sourceforge.net> | 2001-08-28 23:32:34 +0000 |
commit | 6dbd39fe70f094ab178bc788369379e2229dd630 (patch) | |
tree | c911daf7e26a25146f16c933b1c9a62ad8d33bce /libavcodec/mpegvideo.c | |
parent | 6bbc662f7d78e5ea0256e9354b9965c93286919f (diff) | |
download | ffmpeg-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.c | 2 |
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; |