* Every frame is a key_frame

Originally committed as revision 470 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Philip Gladstone 2002-05-09 01:22:51 +00:00
parent 4a663d8042
commit 4c3d2e5f86
1 changed files with 3 additions and 0 deletions

View File

@ -237,6 +237,9 @@ static int encode_frame(AVCodecContext *avctx,
default:
return -1;
}
avctx->key_frame = 1;
avctx->frame_size = (dst - frame) / (sample_size * avctx->channels);
return dst - frame;
}