From eea8c08fa82791378bd33769992a7435409394b7 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 30 Apr 2004 17:42:58 +0000 Subject: cleanup & memleak fix Originally committed as revision 3095 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/cljr.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'libavcodec/cljr.c') diff --git a/libavcodec/cljr.c b/libavcodec/cljr.c index 382a77ac7d..912a050fbd 100644 --- a/libavcodec/cljr.c +++ b/libavcodec/cljr.c @@ -133,13 +133,6 @@ static int encode_init(AVCodecContext *avctx){ return 0; } -static int decode_end(AVCodecContext *avctx){ - - avcodec_default_free_buffers(avctx); - - return 0; -} - AVCodec cljr_decoder = { "cljr", CODEC_TYPE_VIDEO, @@ -147,7 +140,7 @@ AVCodec cljr_decoder = { sizeof(CLJRContext), decode_init, NULL, - decode_end, + NULL, decode_frame, CODEC_CAP_DR1, }; -- cgit v1.2.3