From 8ae19143277e8c740e1cdeb280cfdf4c47a3eb23 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Thu, 12 Apr 2012 18:55:25 +0200 Subject: vcr1enc: drop pointless empty encode_init() wrapper function --- libavcodec/vcr1.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'libavcodec/vcr1.c') diff --git a/libavcodec/vcr1.c b/libavcodec/vcr1.c index e3e45cc6a5..7edd801b8f 100644 --- a/libavcodec/vcr1.c +++ b/libavcodec/vcr1.c @@ -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"), }; -- cgit v1.2.3