[FFmpeg-devel] [PATCH 3/3] avcodec/hevc/hevcdec: use av_frame_side_data_add() where useful
James Almer
jamrial at gmail.com
Thu Jan 2 17:10:19 EET 2025
Signed-off-by: James Almer <jamrial at gmail.com>
---
libavcodec/hevc/hevcdec.c | 11 ++++-------
1 file changed, 4 insertions(+), 7 deletions(-)
diff --git a/libavcodec/hevc/hevcdec.c b/libavcodec/hevc/hevcdec.c
index 1a2f668053..fd7fd3ea2c 100644
--- a/libavcodec/hevc/hevcdec.c
+++ b/libavcodec/hevc/hevcdec.c
@@ -3087,14 +3087,11 @@ static int set_side_data(HEVCContext *s)
return ret;
if (s->sei.common.dynamic_hdr_vivid.info) {
- AVBufferRef *info_ref = av_buffer_ref(s->sei.common.dynamic_hdr_vivid.info);
- if (!info_ref)
- return AVERROR(ENOMEM);
-
- if (!av_frame_new_side_data_from_buf(out, AV_FRAME_DATA_DYNAMIC_HDR_VIVID, info_ref)) {
- av_buffer_unref(&info_ref);
+ if (!av_frame_side_data_add(&out->side_data, &out->nb_side_data,
+ AV_FRAME_DATA_DYNAMIC_HDR_VIVID,
+ &s->sei.common.dynamic_hdr_vivid.info,
+ AV_FRAME_SIDE_DATA_FLAG_NEW_REF))
return AVERROR(ENOMEM);
- }
}
return 0;
--
2.47.1
More information about the ffmpeg-devel
mailing list