Commit 8ae19143 authored by Diego Biurrun's avatar Diego Biurrun

vcr1enc: drop pointless empty encode_init() wrapper function

parent eeeefd50
......@@ -172,19 +172,12 @@ static int encode_frame(AVCodecContext *avctx, unsigned char *buf,
return size * 4;
}
static av_cold int encode_init(AVCodecContext *avctx)
{
common_init(avctx);
return 0;
}
AVCodec ff_vcr1_encoder = {
.name = "vcr1",
.type = AVMEDIA_TYPE_VIDEO,
.id = CODEC_ID_VCR1,
.priv_data_size = sizeof(VCR1Context),
.init = encode_init,
.init = common_init,
.encode = encode_frame,
.long_name = NULL_IF_CONFIG_SMALL("ATI VCR1"),
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment