[FFmpeg-cvslog] mpeg4: fix another packed divx issue.

Michael Niedermayer git at videolan.org
Wed Sep 7 01:11:32 CEST 2011


ffmpeg | branch: oldabi | Michael Niedermayer <michaelni at gmx.at> | Tue Sep  6 04:09:43 2011 +0200| [579faec4d1bffe162c2165137ae602bfd97f3e64] | committer: Carl Eugen Hoyos

mpeg4: fix another packed divx issue.
Fixes getting_stuck.avi

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit 6dbac85f8d20c77283e3d01f42a7c2154bbf976d)

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=579faec4d1bffe162c2165137ae602bfd97f3e64
---

 libavcodec/h263dec.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c
index 267a2c0..0147412 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){



More information about the ffmpeg-cvslog mailing list