Commit bf1dc579 authored by michael's avatar michael

add a universal fallback frame code for the case that no other applies


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10028 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b49aabec
......@@ -30,6 +30,13 @@ static void build_frame_code(AVFormatContext *s){
int end= 254;
int keyframe_0_esc= s->nb_streams > 2;
int pred_table[10];
FrameCode *ft;
ft= &nut->frame_code[start];
ft->flags= FLAG_CODED;
ft->size_mul=1;
ft->pts_delta=1;
start++;
if(keyframe_0_esc){
/* keyframe = 0 escape */
......
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