summaryrefslogtreecommitdiff
path: root/libavcodec/xan.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-11-26 17:43:48 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-12-04 15:46:46 +0100
commit85e1d469af1ed4d4e0bb5b5f26c4cb6f60f8304a (patch)
tree16eb82f6086c093225a953c208a1aa7d16c8c43c /libavcodec/xan.c
parent13f10dc15ef7044fd4ff873623f9b07d64ac8a47 (diff)
avcodec/xan: Cleanup generically on init failure
Reviewed-by: Anton Khirnov <anton@khirnov.net> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/xan.c')
-rw-r--r--libavcodec/xan.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/libavcodec/xan.c b/libavcodec/xan.c
index 1ccf164847..5318aab797 100644
--- a/libavcodec/xan.c
+++ b/libavcodec/xan.c
@@ -100,16 +100,12 @@ static av_cold int xan_decode_init(AVCodecContext *avctx)
return AVERROR(ENOMEM);
s->buffer2_size = avctx->width * avctx->height;
s->buffer2 = av_malloc(s->buffer2_size + 130);
- if (!s->buffer2) {
- av_freep(&s->buffer1);
+ if (!s->buffer2)
return AVERROR(ENOMEM);
- }
s->last_frame = av_frame_alloc();
- if (!s->last_frame) {
- xan_decode_end(avctx);
+ if (!s->last_frame)
return AVERROR(ENOMEM);
- }
return 0;
}
@@ -649,4 +645,5 @@ AVCodec ff_xan_wc3_decoder = {
.close = xan_decode_end,
.decode = xan_decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
+ .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
};