From fc975818b56e8638cf2347274b014400440f8bf7 Mon Sep 17 00:00:00 2001 From: Mathieu Duponchelle Date: Tue, 6 Apr 2021 00:21:58 +0200 Subject: [PATCH] scte-section.h: fix type macros Part-of: --- .../gst-plugins-bad/gst-libs/gst/mpegts/gst-scte-section.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/gst-plugins-bad/gst-libs/gst/mpegts/gst-scte-section.h b/subprojects/gst-plugins-bad/gst-libs/gst/mpegts/gst-scte-section.h index 7242f41248..4b98a4af13 100644 --- a/subprojects/gst-plugins-bad/gst-libs/gst/mpegts/gst-scte-section.h +++ b/subprojects/gst-plugins-bad/gst-libs/gst/mpegts/gst-scte-section.h @@ -104,7 +104,7 @@ typedef enum { } GstMpegtsSectionSCTETableID; /* Splice Information Table (SIT) */ -#define GST_TYPE_MPEGTS_SCTE_SPLICE_EVENT (gst_mpegts_scte_splice_event_get_type); +#define GST_TYPE_MPEGTS_SCTE_SPLICE_EVENT (gst_mpegts_scte_splice_event_get_type()) typedef struct _GstMpegtsSCTESpliceEvent GstMpegtsSCTESpliceEvent; struct _GstMpegtsSCTESpliceEvent { @@ -153,7 +153,7 @@ typedef enum { GST_MTS_SCTE_SPLICE_COMMAND_PRIVATE = 0xff } GstMpegtsSCTESpliceCommandType; -#define GST_TYPE_MPEGTS_SCTE_SIT (gst_mpegts_scte_sit_get_type()); +#define GST_TYPE_MPEGTS_SCTE_SIT (gst_mpegts_scte_sit_get_type()) typedef struct _GstMpegtsSCTESIT GstMpegtsSCTESIT;