aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-09-06 04:09:43 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2011-09-07 00:48:28 +0200
commitc92068430d33e60e0b860873b174f68106007b14 (patch)
treeaa26304aac8233163feca7d3c42f620ffc301c26
parent274a5b7cdb4f7199ee8f04117d20459a60199de6 (diff)
downloadffmpeg-c92068430d33e60e0b860873b174f68106007b14.tar.gz
mpeg4: fix another packed divx issue.
Fixes getting_stuck.avi Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 6dbac85f8d20c77283e3d01f42a7c2154bbf976d)
-rw-r--r--libavcodec/h263dec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c
index 5d4f03762d..95b0164478 100644
--- a/libavcodec/h263dec.c
+++ b/libavcodec/h263dec.c
@@ -380,7 +380,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){