From f7813a5324be39d13ab536c245d15dfc602a7849 Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Sun, 29 Dec 2013 12:19:38 +0000 Subject: basic type mechanism working --- ffmpeg/libavcodec/y41pdec.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'ffmpeg/libavcodec/y41pdec.c') diff --git a/ffmpeg/libavcodec/y41pdec.c b/ffmpeg/libavcodec/y41pdec.c index 42449c6..9d1e531 100644 --- a/ffmpeg/libavcodec/y41pdec.c +++ b/ffmpeg/libavcodec/y41pdec.c @@ -81,19 +81,12 @@ static int y41p_decode_frame(AVCodecContext *avctx, void *data, return avpkt->size; } -static av_cold int y41p_decode_close(AVCodecContext *avctx) -{ - - return 0; -} - AVCodec ff_y41p_decoder = { .name = "y41p", + .long_name = NULL_IF_CONFIG_SMALL("Uncompressed YUV 4:1:1 12-bit"), .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_Y41P, .init = y41p_decode_init, .decode = y41p_decode_frame, - .close = y41p_decode_close, .capabilities = CODEC_CAP_DR1, - .long_name = NULL_IF_CONFIG_SMALL("Uncompressed YUV 4:1:1 12-bit"), }; -- cgit v1.2.3