From dc7fd9c1f14d2889b1f968c6c62ff4ec751f025e Mon Sep 17 00:00:00 2001 From: Wonchul Lee Date: Mon, 31 Oct 2016 16:33:41 +0900 Subject: [PATCH] urisourcebin: Fix GST_TYPE_URI_SOURCE_BIN macro typo https://bugzilla.gnome.org/show_bug.cgi?id=772445 --- gst/playback/gsturisourcebin.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gst/playback/gsturisourcebin.c b/gst/playback/gsturisourcebin.c index 2361888222..9c9d1a5d99 100644 --- a/gst/playback/gsturisourcebin.c +++ b/gst/playback/gsturisourcebin.c @@ -52,16 +52,16 @@ #include "gstplayback.h" #include "gstplaybackutils.h" -#define GST_TYPE_URI_DECODE_BIN \ +#define GST_TYPE_URI_SOURCE_BIN \ (gst_uri_source_bin_get_type()) #define GST_URI_SOURCE_BIN(obj) \ - (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_URI_DECODE_BIN,GstURISourceBin)) + (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_URI_SOURCE_BIN,GstURISourceBin)) #define GST_URI_SOURCE_BIN_CLASS(klass) \ - (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_URI_DECODE_BIN,GstURISourceBinClass)) + (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_URI_SOURCE_BIN,GstURISourceBinClass)) #define GST_IS_URI_SOURCE_BIN(obj) \ - (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_URI_DECODE_BIN)) + (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_URI_SOURCE_BIN)) #define GST_IS_URI_SOURCE_BIN_CLASS(klass) \ - (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_URI_DECODE_BIN)) + (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_URI_SOURCE_BIN)) #define GST_URI_SOURCE_BIN_CAST(obj) ((GstURISourceBin *) (obj)) typedef struct _GstURISourceBin GstURISourceBin; @@ -2821,5 +2821,5 @@ gst_uri_source_bin_plugin_init (GstPlugin * plugin) "URI source element"); return gst_element_register (plugin, "urisourcebin", GST_RANK_NONE, - GST_TYPE_URI_DECODE_BIN); + GST_TYPE_URI_SOURCE_BIN); }