From 3db320ea0cef547027f859ac914d4f105a8dad5e Mon Sep 17 00:00:00 2001 From: Falk Hüffner Date: Thu, 15 May 2003 01:34:47 +0000 Subject: Warning fixes. Originally committed as revision 1884 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/raw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/raw.c') diff --git a/libavcodec/raw.c b/libavcodec/raw.c index 8c38b8e8c1..ee4b6fdc66 100644 --- a/libavcodec/raw.c +++ b/libavcodec/raw.c @@ -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); -- cgit v1.2.3