diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-08-29 17:59:17 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-08-30 03:06:50 +0200 |
commit | c767af97f83d4277ec075ba9e39e5ea65db30074 (patch) | |
tree | 04e3231bdd47dd255bc9ecf385d58771830f4385 | |
parent | beca89ed288244512e6e7084995363bfaf07035b (diff) | |
download | ffmpeg-c767af97f83d4277ec075ba9e39e5ea65db30074.tar.gz |
avcodec/y41penc: Remove empty close function
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/y41penc.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/y41penc.c b/libavcodec/y41penc.c index 63752e2b44..d7d301fab5 100644 --- a/libavcodec/y41penc.c +++ b/libavcodec/y41penc.c @@ -75,11 +75,6 @@ static int y41p_encode_frame(AVCodecContext *avctx, AVPacket *pkt, return 0; } -static av_cold int y41p_encode_close(AVCodecContext *avctx) -{ - return 0; -} - AVCodec ff_y41p_encoder = { .name = "y41p", .long_name = NULL_IF_CONFIG_SMALL("Uncompressed YUV 4:1:1 12-bit"), @@ -87,7 +82,6 @@ AVCodec ff_y41p_encoder = { .id = AV_CODEC_ID_Y41P, .init = y41p_encode_init, .encode2 = y41p_encode_frame, - .close = y41p_encode_close, .pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_YUV411P, AV_PIX_FMT_NONE }, }; |