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:36:55 +0200
commit579faec4d1bffe162c2165137ae602bfd97f3e64 (patch)
treea874d8f2e28e30c87b0f1d5e67f221f301f2d867
parent414a6a9e6b84189199adc502ec464f0c189ca434 (diff)
downloadffmpeg-579faec4d1bffe162c2165137ae602bfd97f3e64.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 267a2c0cef..01474129e4 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){