summaryrefslogtreecommitdiff
path: root/gst/hls
diff options
context:
space:
mode:
authorMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>2012-09-14 17:08:49 +0200
committerMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>2012-09-14 17:27:49 +0200
commit578861abeab76704b98d377f69e136f8431dc4ab (patch)
tree56acc109a822cc72f9709d30e99c049501ac5404 /gst/hls
parentf2191d403c47dda65836e72686a94a94f2dcc0bc (diff)
downloadgstreamer-plugins-bad-578861abeab76704b98d377f69e136f8431dc4ab.tar.gz
replace gst_element_class_set_details_simple with gst_element_class_set_metadata
Diffstat (limited to 'gst/hls')
-rw-r--r--gst/hls/gsthlsdemux.c2
-rw-r--r--gst/hls/gsthlssink.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/gst/hls/gsthlsdemux.c b/gst/hls/gsthlsdemux.c
index 404edcc9f..5c9ec6bec 100644
--- a/gst/hls/gsthlsdemux.c
+++ b/gst/hls/gsthlsdemux.c
@@ -197,7 +197,7 @@ gst_hls_demux_class_init (GstHLSDemuxClass * klass)
gst_element_class_add_pad_template (element_class,
gst_static_pad_template_get (&sinktemplate));
- gst_element_class_set_details_simple (element_class,
+ gst_element_class_set_metadata (element_class,
"HLS Demuxer",
"Demuxer/URIList",
"HTTP Live Streaming demuxer",
diff --git a/gst/hls/gsthlssink.c b/gst/hls/gsthlssink.c
index 7c5dbe756..66670c888 100644
--- a/gst/hls/gsthlssink.c
+++ b/gst/hls/gsthlssink.c
@@ -99,7 +99,7 @@ gst_hls_sink_base_init (gpointer g_class)
gst_element_class_add_pad_template (element_class,
gst_static_pad_template_get (&sink_template));
- gst_element_class_set_details_simple (element_class,
+ gst_element_class_set_metadata (element_class,
"HTTP Live Streaming sink", "Sink", "HTTP Live Streaming sink",
"Alessandro Decina <alessandro.decina@gmail.com>");
}