1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

vcr1: Fix return type of common_init to match the function pointer signature.

libavcodec/vcr1.c:182: warning: initialization from incompatible pointer type
This commit is contained in:
Diego Biurrun 2012-05-14 12:33:04 +02:00
parent 55da88c5ab
commit a761e5951c

View File

@ -33,11 +33,13 @@ typedef struct VCR1Context {
int offset[4];
} VCR1Context;
static av_cold void common_init(AVCodecContext *avctx)
static av_cold int common_init(AVCodecContext *avctx)
{
VCR1Context *const a = avctx->priv_data;
avctx->coded_frame = &a->picture;
return 0;
}
static av_cold int decode_init(AVCodecContext *avctx)