# HG changeset patch # User michael # Date 1203536738 0 # Node ID 464938b9c2b04adb4f48253a000b6404394b3ec7 # Parent 9f4f88218b788df53bac482196fa17e909f39a1d Make find_frame_end() merge 2 mpeg2 field pictures. This should make mpeg2 field pictures much more digestable. diff -r 9f4f88218b78 -r 464938b9c2b0 mpeg12.c --- a/mpeg12.c Wed Feb 20 03:20:06 2008 +0000 +++ b/mpeg12.c Wed Feb 20 19:45:38 2008 +0000 @@ -2182,29 +2182,43 @@ int i; uint32_t state= pc->state; - i=0; - if(!pc->frame_start_found){ - for(i=0; i 1/4 + 1 first_SEQEXT -> 0/2 + 2 first field start -> 3/0 + 3 second_SEQEXT -> 2/0 + 4 searching end +*/ + + for(i=0; iframe_start_found>=0 && pc->frame_start_found<=4); + if(pc->frame_start_found&1){ + if(state == EXT_START_CODE && (buf[i]&0xF0) != 0x80) + pc->frame_start_found--; + else if(state == EXT_START_CODE+2){ + if((buf[i]&3) == 3) pc->frame_start_found= 0; + else pc->frame_start_found= (pc->frame_start_found+1)&3; + } + state++; + }else{ i= ff_find_start_code(buf+i, buf+buf_size, &state) - buf - 1; - if(state >= SLICE_MIN_START_CODE && state <= SLICE_MAX_START_CODE){ + if(pc->frame_start_found==0 && state >= SLICE_MIN_START_CODE && state <= SLICE_MAX_START_CODE){ i++; - pc->frame_start_found=1; - break; + pc->frame_start_found=4; } if(state == SEQ_END_CODE){ pc->state=-1; return i+1; } - } - } - - if(pc->frame_start_found){ - /* EOF considered as end of frame */ - if (buf_size == 0) - return 0; - for(; iframe_start_found==2 && state == SEQ_START_CODE) + pc->frame_start_found= 0; + if(pc->frame_start_found<4 && state == EXT_START_CODE) + pc->frame_start_found++; + if(pc->frame_start_found == 4 && (state&0xFFFFFF00) == 0x100){ if(state < SLICE_MIN_START_CODE || state > SLICE_MAX_START_CODE){ pc->frame_start_found=0; pc->state=-1;