summaryrefslogtreecommitdiff
path: root/libavcodec/rv20enc.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2010-09-26 01:56:48 +0000
committerMichael Niedermayer <michaelni@gmx.at>2010-09-26 01:56:48 +0000
commit53eb458a7263d0479059ba764b1de62aa4ff194e (patch)
treeb12378ec935eddd4f6960a94d3c30586133dba9a /libavcodec/rv20enc.c
parent48f7f29f52f3eeff2b200943834ac1e7461536e7 (diff)
Fix rv20 encoding so the binary decoder can decode it.
Originally committed as revision 25203 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rv20enc.c')
-rw-r--r--libavcodec/rv20enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rv20enc.c b/libavcodec/rv20enc.c
index 5ab0b9a039..a31a351a89 100644
--- a/libavcodec/rv20enc.c
+++ b/libavcodec/rv20enc.c
@@ -41,7 +41,7 @@ void rv20_encode_picture_header(MpegEncContext *s, int picture_number){
put_bits(&s->pb, 1, s->no_rounding);
assert(s->f_code == 1);
- assert(s->unrestricted_mv == 1);
+ assert(s->unrestricted_mv == 0);
assert(s->alt_inter_vlc == 0);
assert(s->umvplus == 0);
assert(s->modified_quant==1);