Commit c05bdcaf authored by bcoudurier's avatar bcoudurier

add state64 field to ParseContext storing last 8 bytes, to be able to check for longer startcodes

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15671 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 59a4e795
......@@ -274,6 +274,7 @@ int ff_combine_frame(ParseContext *pc, int next, const uint8_t **buf, int *buf_s
/* store overread bytes */
for(;next < 0; next++){
pc->state = (pc->state<<8) | pc->buffer[pc->last_index + next];
pc->state64 = (pc->state64<<8) | pc->buffer[pc->last_index + next];
pc->overread++;
}
......
......@@ -34,6 +34,7 @@ typedef struct ParseContext{
int frame_start_found;
int overread; ///< the number of bytes which where irreversibly read from the next frame
int overread_index; ///< the index into ParseContext.buffer of the overread bytes
uint64_t state64; ///< contains the last 8 bytes in MSB order
} ParseContext;
struct MpegEncContext;
......
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