Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-09-06 06:09:43 +0400
committerMichael Niedermayer <michaelni@gmx.at>2011-09-06 06:09:43 +0400
commit6dbac85f8d20c77283e3d01f42a7c2154bbf976d (patch)
treeeb80e44aa39cdc6cdecf11113395b85b04879820 /libavcodec/h263dec.c
parentd543b3bb5260df543e11b5a3f05767625b8a250e (diff)
mpeg4: fix another packed divx issue.
Fixes getting_stuck.avi Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r--libavcodec/h263dec.c2
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){