diff options
author | Mike Melanson <mike@multimedia.cx> | 2003-12-18 23:44:49 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2003-12-18 23:44:49 +0000 |
commit | 4ff7c576f825a6d8bf94c344ec2d1a5243ebe09e (patch) | |
tree | aa3fa125547882b391338b789715f82a5542aec5 /libavcodec/svq3.c | |
parent | 9a41c2c7474696c2ac0c3618626176dd91178d02 (diff) | |
download | ffmpeg-4ff7c576f825a6d8bf94c344ec2d1a5243ebe09e.tar.gz |
SVQ3 uses unrestricted motion vectors
Originally committed as revision 2626 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/svq3.c')
-rw-r--r-- | libavcodec/svq3.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c index e5d7bb644b..b160987a05 100644 --- a/libavcodec/svq3.c +++ b/libavcodec/svq3.c @@ -766,7 +766,8 @@ static int svq3_decode_frame (AVCodecContext *avctx, *data_size = 0; s->flags = avctx->flags; - + s->unrestricted_mv = 1; + if (!s->context_initialized) { s->width = avctx->width; s->height = avctx->height; |