Skip to content

Commit

Permalink
Fix signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
turran committed Sep 8, 2024
1 parent ece3c88 commit 50afe8c
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ static GstElementClass *parent_class = NULL;
static gint private_offset = 0;

static void gst_rtp_base_depayload_class_init (GstRTPBaseDepayloadClass *
klass);
klass, gpointer klass_data);
static void gst_rtp_base_depayload_init (GstRTPBaseDepayload * rtpbasepayload,
GstRTPBaseDepayloadClass * klass);
static GstEvent *create_segment_event (GstRTPBaseDepayload * filter,
Expand Down Expand Up @@ -264,7 +264,8 @@ extension_accumulator (GSignalInvocationHint * ihint,
}

static void
gst_rtp_base_depayload_class_init (GstRTPBaseDepayloadClass * klass)
gst_rtp_base_depayload_class_init (GstRTPBaseDepayloadClass * klass,
gpointer klass_data)
{
GObjectClass *gobject_class;
GstElementClass *gstelement_class;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,8 @@ enum

static GParamSpec *gst_rtp_base_payload_extensions_pspec;

static void gst_rtp_base_payload_class_init (GstRTPBasePayloadClass * klass);
static void gst_rtp_base_payload_class_init (GstRTPBasePayloadClass * klass,
gpointer klass_data);
static void gst_rtp_base_payload_init (GstRTPBasePayload * rtpbasepayload,
gpointer g_class);
static void gst_rtp_base_payload_finalize (GObject * object);
Expand Down Expand Up @@ -261,7 +262,8 @@ extension_accumulator (GSignalInvocationHint * ihint,
}

static void
gst_rtp_base_payload_class_init (GstRTPBasePayloadClass * klass)
gst_rtp_base_payload_class_init (GstRTPBasePayloadClass * klass,
gpointer klass_data)
{
GObjectClass *gobject_class;
GstElementClass *gstelement_class;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,8 @@ static gint private_offset = 0;
#define META_TAG_VIDEO meta_tag_video_quark
static GQuark meta_tag_video_quark;

static void gst_video_decoder_class_init (GstVideoDecoderClass * klass);
static void gst_video_decoder_class_init (GstVideoDecoderClass * klass,
gpointer klass_data);
static void gst_video_decoder_init (GstVideoDecoder * dec,
GstVideoDecoderClass * klass);

Expand Down Expand Up @@ -585,7 +586,7 @@ gst_video_decoder_get_instance_private (GstVideoDecoder * self)
}

static void
gst_video_decoder_class_init (GstVideoDecoderClass * klass)
gst_video_decoder_class_init (GstVideoDecoderClass * klass, gpointer klass_data)
{
GObjectClass *gobject_class;
GstElementClass *gstelement_class;
Expand Down
6 changes: 3 additions & 3 deletions subprojects/gst-plugins-good/gst/isomp4/gstqtmux.c
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ gst_qt_mux_base_init (gpointer g_class)
}

static void
gst_qt_mux_class_init (GstQTMuxClass * klass)
gst_qt_mux_class_init (GstQTMuxClass * klass, gpointer klass_data)
{
GObjectClass *gobject_class;
GstElementClass *gstelement_class;
Expand Down Expand Up @@ -7510,7 +7510,7 @@ gst_qt_mux_subclass_get_property (GObject * object,
}

static void
gst_qt_mux_subclass_class_init (GstQTMuxClass * klass)
gst_qt_mux_subclass_class_init (GstQTMuxClass * klass, gpointer klass_data)
{
GObjectClass *gobject_class = (GObjectClass *) klass;
GParamFlags streamable_flags;
Expand Down Expand Up @@ -7539,7 +7539,7 @@ gst_qt_mux_subclass_class_init (GstQTMuxClass * klass)
}

static void
gst_qt_mux_subclass_init (GstQTMux * qtmux)
gst_qt_mux_subclass_init (GstQTMux * qtmux, GstQTMuxClass * klass)
{
}

Expand Down
2 changes: 1 addition & 1 deletion subprojects/gstreamer/gst/gstpreset.c
Original file line number Diff line number Diff line change
Expand Up @@ -1267,7 +1267,7 @@ gst_preset_is_editable (GstPreset * preset)
/* class internals */

static void
gst_preset_class_init (GstPresetInterface * iface)
gst_preset_class_init (GstPresetInterface * iface, gpointer iface_data)
{
iface->get_preset_names = gst_preset_default_get_preset_names;
iface->get_property_names = gst_preset_default_get_property_names;
Expand Down

0 comments on commit 50afe8c

Please sign in to comment.