diff options
Diffstat (limited to 'libavcodec/y41penc.c')
-rw-r--r-- | libavcodec/y41penc.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libavcodec/y41penc.c b/libavcodec/y41penc.c index 477861880e..b30cbfaf26 100644 --- a/libavcodec/y41penc.c +++ b/libavcodec/y41penc.c @@ -30,14 +30,8 @@ static av_cold int y41p_encode_init(AVCodecContext *avctx) return AVERROR_INVALIDDATA; } - avctx->coded_frame = av_frame_alloc(); avctx->bits_per_coded_sample = 12; - if (!avctx->coded_frame) { - av_log(avctx, AV_LOG_ERROR, "Could not allocate frame.\n"); - return AVERROR(ENOMEM); - } - return 0; } @@ -84,8 +78,6 @@ static int y41p_encode_frame(AVCodecContext *avctx, AVPacket *pkt, static av_cold int y41p_encode_close(AVCodecContext *avctx) { - av_frame_free(&avctx->coded_frame); - return 0; } |