mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-10 17:35:59 +00:00
rtp: Fix incompatible type build warning
Use GstURIType instead of guint ../subprojects/gst-plugins-bad/gst/rtp/gstrtpsink.c(575): warning C4133: '=': incompatible types ... ../subprojects/gst-plugins-bad/gst/rtp/gstrtpsrc.c(725): warning C4133: '=': incompatible types ...
This commit is contained in:
parent
d289608a99
commit
be25c988fd
2 changed files with 2 additions and 2 deletions
|
@ -534,7 +534,7 @@ gst_rtp_sink_init (GstRtpSink * self)
|
|||
g_mutex_init (&self->lock);
|
||||
}
|
||||
|
||||
static guint
|
||||
static GstURIType
|
||||
gst_rtp_sink_uri_get_type (GType type)
|
||||
{
|
||||
return GST_URI_SINK;
|
||||
|
|
|
@ -684,7 +684,7 @@ gst_rtp_src_init (GstRtpSrc * self)
|
|||
g_mutex_init (&self->lock);
|
||||
}
|
||||
|
||||
static guint
|
||||
static GstURIType
|
||||
gst_rtp_src_uri_get_type (GType type)
|
||||
{
|
||||
return GST_URI_SRC;
|
||||
|
|
Loading…
Reference in a new issue