mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-01-05 21:55:37 +01:00
Warning fixes.
Originally committed as revision 1884 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user