Warning fixes.

Originally committed as revision 1884 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Falk Hüffner
2003-05-15 01:34:47 +00:00
parent 94d44f455c
commit 3db320ea0c
6 changed files with 7 additions and 7 deletions

View File

@@ -141,7 +141,7 @@ static int raw_close_decoder(AVCodecContext *avctx)
static int raw_init_encoder(AVCodecContext *avctx)
{
avctx->coded_frame = (AVPicture*)avctx->priv_data;
avctx->coded_frame = (AVFrame *)avctx->priv_data;
avctx->coded_frame->pict_type = FF_I_TYPE;
avctx->coded_frame->key_frame = 1;
avctx->codec_tag = findFourCC(avctx->pix_fmt);