diff options
Diffstat (limited to 'src/libffmpeg/libavcodec/vcr1.c')
-rw-r--r-- | src/libffmpeg/libavcodec/vcr1.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/libffmpeg/libavcodec/vcr1.c b/src/libffmpeg/libavcodec/vcr1.c index 4b8c9fc41..05539452a 100644 --- a/src/libffmpeg/libavcodec/vcr1.c +++ b/src/libffmpeg/libavcodec/vcr1.c @@ -165,13 +165,6 @@ static int encode_init(AVCodecContext *avctx){ return 0; } -static int decode_end(AVCodecContext *avctx){ - - avcodec_default_free_buffers(avctx); - - return 0; -} - AVCodec vcr1_decoder = { "vcr1", CODEC_TYPE_VIDEO, @@ -179,7 +172,7 @@ AVCodec vcr1_decoder = { sizeof(VCR1Context), decode_init, NULL, - decode_end, + NULL, decode_frame, CODEC_CAP_DR1, }; |