From b3c7b9be49f713c348b5b0b70d55fbb256ecd68e Mon Sep 17 00:00:00 2001 From: Jakub Adam Date: Tue, 25 May 2021 21:15:53 +0200 Subject: [PATCH] videoutils: add HDR metadata fields to GstVideoCodecState Part-of: --- gst-libs/gst/video/gstvideoutils.c | 4 ++++ gst-libs/gst/video/gstvideoutils.h | 24 +++++++++++++++++++++++- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/gst-libs/gst/video/gstvideoutils.c b/gst-libs/gst/video/gstvideoutils.c index 7e543db35c..03dffcd8fc 100644 --- a/gst-libs/gst/video/gstvideoutils.c +++ b/gst-libs/gst/video/gstvideoutils.c @@ -171,6 +171,10 @@ _gst_video_codec_state_free (GstVideoCodecState * state) gst_caps_unref (state->allocation_caps); if (state->codec_data) gst_buffer_unref (state->codec_data); + if (state->mastering_display_info) + g_slice_free (GstVideoMasteringDisplayInfo, state->mastering_display_info); + if (state->content_light_level) + g_slice_free (GstVideoContentLightLevel, state->content_light_level); g_slice_free (GstVideoCodecState, state); } diff --git a/gst-libs/gst/video/gstvideoutils.h b/gst-libs/gst/video/gstvideoutils.h index 63338ce450..cbe19f0e61 100644 --- a/gst-libs/gst/video/gstvideoutils.h +++ b/gst-libs/gst/video/gstvideoutils.h @@ -28,6 +28,7 @@ #include #include +#include G_BEGIN_DECLS #define GST_TYPE_VIDEO_CODEC_STATE \ @@ -47,6 +48,10 @@ typedef struct _GstVideoCodecFrame GstVideoCodecFrame; * 'codec_data' field of a stream, or NULL. * @allocation_caps: The #GstCaps for allocation query and pool * negotiation. Since: 1.10 + * @mastering_display_info: Mastering display color volume information + * (HDR metadata) for the stream. Since: 1.20 + * @content_light_level: Content light level information for the stream. + * Since: 1.20 * * Structure representing the state of an incoming or outgoing video * stream for encoders and decoders. @@ -58,6 +63,20 @@ typedef struct _GstVideoCodecFrame GstVideoCodecFrame; * gst_video_decoder_set_output_state() or * gst_video_encoder_set_output_state() methods. */ +/** + * GstVideoCodecState.mastering_display_info: + * + * Mastering display color volume information (HDR metadata) for the stream. + * + * Since: 1.20 + */ +/** + * GstVideoCodecState.content_light_level: + * + * Content light level information for the stream. + * + * Since: 1.20 + */ struct _GstVideoCodecState { /*< private >*/ @@ -72,8 +91,11 @@ struct _GstVideoCodecState GstCaps *allocation_caps; + GstVideoMasteringDisplayInfo *mastering_display_info; + GstVideoContentLightLevel *content_light_level; + /*< private >*/ - gpointer padding[GST_PADDING_LARGE - 1]; + gpointer padding[GST_PADDING_LARGE - 3]; }; /**