From e5c38003b8729fdf69939ac529fdd3e998a5c273 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Manuel=20J=C3=A1quez=20Leal?= Date: Wed, 29 Mar 2023 09:20:52 +0200 Subject: [PATCH] gsth254picture: move internal API to private header Part-of: --- .../gst-libs/gst/codecs/gsth264picture-private.h | 4 ++++ .../gst-plugins-bad/gst-libs/gst/codecs/gsth264picture.h | 5 ----- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/subprojects/gst-plugins-bad/gst-libs/gst/codecs/gsth264picture-private.h b/subprojects/gst-plugins-bad/gst-libs/gst/codecs/gsth264picture-private.h index f71741d659..06010c6a4e 100644 --- a/subprojects/gst-plugins-bad/gst-libs/gst/codecs/gsth264picture-private.h +++ b/subprojects/gst-plugins-bad/gst-libs/gst/codecs/gsth264picture-private.h @@ -25,4 +25,8 @@ G_BEGIN_DECLS gint32 gst_h264_dpb_get_last_output_poc (GstH264Dpb * dpb); +void gst_h264_picture_set_reference (GstH264Picture * picture, + GstH264PictureReference reference, + gboolean other_field); + G_END_DECLS diff --git a/subprojects/gst-plugins-bad/gst-libs/gst/codecs/gsth264picture.h b/subprojects/gst-plugins-bad/gst-libs/gst/codecs/gsth264picture.h index 19f865d6c3..62a3f3a097 100644 --- a/subprojects/gst-plugins-bad/gst-libs/gst/codecs/gsth264picture.h +++ b/subprojects/gst-plugins-bad/gst-libs/gst/codecs/gsth264picture.h @@ -324,11 +324,6 @@ gboolean gst_h264_dpb_perform_memory_management_control_operation (GstH2 GstH264RefPicMarking *ref_pic_marking, GstH264Picture * picture); -/* Internal methods */ -void gst_h264_picture_set_reference (GstH264Picture * picture, - GstH264PictureReference reference, - gboolean other_field); - G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstH264Picture, gst_h264_picture_unref) G_END_DECLS