diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-08 16:00:16 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-11 19:38:41 +0100 |
commit | f5d6c78a8823b59f4a12af1a91e005f1e20903ce (patch) | |
tree | d475f1c2c6bd48b8ee5098c4e07100ef421b71b1 /libavcodec/twinvq.h | |
parent | d75c4cc7c1f1b9636140bee530ceda2c0b6b7c1d (diff) | |
download | ffmpeg-f5d6c78a8823b59f4a12af1a91e005f1e20903ce.tar.gz |
avcodec/metasound, twinvqdec: Cleanup generically upon init failure
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/twinvq.h')
-rw-r--r-- | libavcodec/twinvq.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/twinvq.h b/libavcodec/twinvq.h index 234604f581..5f49796f03 100644 --- a/libavcodec/twinvq.h +++ b/libavcodec/twinvq.h @@ -197,6 +197,7 @@ static inline float twinvq_mulawinv(float y, float clip, float mu) int ff_twinvq_decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt); int ff_twinvq_decode_close(AVCodecContext *avctx); +/** Requires the caller to call ff_twinvq_decode_close() upon failure. */ int ff_twinvq_decode_init(AVCodecContext *avctx); #endif /* AVCODEC_TWINVQ_H */ |