diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-09-06 04:09:43 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-09-06 04:09:43 +0200 |
commit | 6dbac85f8d20c77283e3d01f42a7c2154bbf976d (patch) | |
tree | eb80e44aa39cdc6cdecf11113395b85b04879820 /libavcodec | |
parent | d543b3bb5260df543e11b5a3f05767625b8a250e (diff) | |
download | ffmpeg-6dbac85f8d20c77283e3d01f42a7c2154bbf976d.tar.gz |
mpeg4: fix another packed divx issue.
Fixes getting_stuck.avi
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h263dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index 400e0d9cd8..2887805a0e 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -382,7 +382,7 @@ uint64_t time= rdtsc(); retry: - if(s->divx_packed && s->xvid_build>=0 && s->bitstream_buffer_size){ + if(s->divx_packed && s->bitstream_buffer_size){ int i; for(i=0; i<buf_size-3; i++){ if(buf[i]==0 && buf[i+1]==0 && buf[i+2]==1){ |