aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/frame_thread_encoder.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2021-08-14 09:55:00 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2021-09-09 13:54:52 +0200
commit51292064a2ce71b2adfc090ed7302b0ed3f0eab9 (patch)
tree5e5342e9f19202fe5bf0f10bb469d4e8a9ae73b8 /libavcodec/frame_thread_encoder.h
parent907273ca20457107ef1b9b5891e8a8e109831756 (diff)
downloadffmpeg-51292064a2ce71b2adfc090ed7302b0ed3f0eab9.tar.gz
avcodec/frame_thread_encoder: Free AVCodecContext structure on error during init
Fixes: MemLeak Fixes: 8281 Fixes: PoC_option158.jpg Fixes: CVE-2020-22037 Reviewed-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 7bba0dd6382e30d646cb406034a66199e071d713) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/frame_thread_encoder.h')
-rw-r--r--libavcodec/frame_thread_encoder.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/frame_thread_encoder.h b/libavcodec/frame_thread_encoder.h
index 1f79553f20..fc85ba48b8 100644
--- a/libavcodec/frame_thread_encoder.h
+++ b/libavcodec/frame_thread_encoder.h
@@ -23,6 +23,10 @@
#include "avcodec.h"
+/**
+ * Initialize frame thread encoder.
+ * @note hardware encoders are not supported
+ */
int ff_frame_thread_encoder_init(AVCodecContext *avctx, AVDictionary *options);
void ff_frame_thread_encoder_free(AVCodecContext *avctx);
int ff_thread_video_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet_ptr);