Commit 3e7e1f15 authored by Michael Niedermayer's avatar Michael Niedermayer

mpeg4: adjust dummy frame threashold for packed divx.

Fixes Ticket427
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 6fc1299c
...@@ -683,7 +683,7 @@ frame_end: ...@@ -683,7 +683,7 @@ frame_end:
int current_pos= s->gb.buffer == s->bitstream_buffer ? 0 : (get_bits_count(&s->gb)>>3); int current_pos= s->gb.buffer == s->bitstream_buffer ? 0 : (get_bits_count(&s->gb)>>3);
int startcode_found=0; int startcode_found=0;
if(buf_size - current_pos > 5){ if(buf_size - current_pos > 7){
int i; int i;
for(i=current_pos; i<buf_size-4; 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){ if(buf[i]==0 && buf[i+1]==0 && buf[i+2]==1 && buf[i+3]==0xB6){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment