aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-09-02 18:00:31 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2011-09-07 00:29:02 +0200
commit1de90fd3758a71c5ff012e9288de07aa1b2915e0 (patch)
treed1ba0754ed6f7ee9a7b153b9f604f0a98744f735
parentc8b37fd03dd491895f37941e7ab3d1e5611d55ec (diff)
downloadffmpeg-1de90fd3758a71c5ff012e9288de07aa1b2915e0.tar.gz
mpeg4: adjust dummy frame threashold for packed divx.
Fixes Ticket427 Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 3e7e1f1509e6a84bd7873586a66de1ee43c8ef88)
-rw-r--r--libavcodec/h263dec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c
index f079557759..5a15bc4a44 100644
--- a/libavcodec/h263dec.c
+++ b/libavcodec/h263dec.c
@@ -681,7 +681,7 @@ frame_end:
int current_pos= s->gb.buffer == s->bitstream_buffer ? 0 : (get_bits_count(&s->gb)>>3);
int startcode_found=0;
- if(buf_size - current_pos > 5){
+ if(buf_size - current_pos > 7){
int i;
for(i=current_pos; i<buf_size-4; i++){
if(buf[i]==0 && buf[i+1]==0 && buf[i+2]==1 && buf[i+3]==0xB6){