[FFmpeg-devel] [PATCH 3/3] avcodec/cuviddec: signal that the decoder sets all output frame properties
James Almer
jamrial at gmail.com
Sat Jun 19 01:02:13 EEST 2021
Fixes memleaks described in ticket #9082.
Signed-off-by: James Almer <jamrial at gmail.com>
---
libavcodec/cuviddec.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/libavcodec/cuviddec.c b/libavcodec/cuviddec.c
index d8c7f23a37..e157777c51 100644
--- a/libavcodec/cuviddec.c
+++ b/libavcodec/cuviddec.c
@@ -1116,6 +1116,7 @@ static const AVCodecHWConfigInternal *const cuvid_hw_configs[] = {
.flush = cuvid_flush, \
.bsfs = bsf_name, \
.capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AVOID_PROBING | AV_CODEC_CAP_HARDWARE, \
+ .caps_internal = FF_CODEC_CAP_SETS_FRAME_PROPS, \
.pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_CUDA, \
AV_PIX_FMT_NV12, \
AV_PIX_FMT_P010, \
--
2.32.0
More information about the ffmpeg-devel
mailing list