mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-11 02:24:13 +00:00
rtpmux: gst_element_class_set_details => gst_element_class_set_details_simple
This commit is contained in:
parent
fb7266884d
commit
2867e00225
2 changed files with 7 additions and 16 deletions
|
@ -71,13 +71,6 @@
|
|||
GST_DEBUG_CATEGORY_STATIC (gst_rtp_dtmf_mux_debug);
|
||||
#define GST_CAT_DEFAULT gst_rtp_dtmf_mux_debug
|
||||
|
||||
/* elementfactory information */
|
||||
static const GstElementDetails gst_rtp_dtmf_mux_details =
|
||||
GST_ELEMENT_DETAILS ("RTP muxer",
|
||||
"Codec/Muxer",
|
||||
"mixes RTP DTMF streams into other RTP streams",
|
||||
"Zeeshan Ali <first.last@nokia.com>");
|
||||
|
||||
enum
|
||||
{
|
||||
SIGNAL_LOCKING_STREAM,
|
||||
|
@ -106,7 +99,10 @@ gst_rtp_dtmf_mux_base_init (gpointer g_class)
|
|||
{
|
||||
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
||||
|
||||
gst_element_class_set_details (element_class, &gst_rtp_dtmf_mux_details);
|
||||
gst_element_class_set_details_simple (element_class, "RTP muxer",
|
||||
"Codec/Muxer",
|
||||
"mixes RTP DTMF streams into other RTP streams",
|
||||
"Zeeshan Ali <first.last@nokia.com>");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -43,13 +43,6 @@
|
|||
GST_DEBUG_CATEGORY_STATIC (gst_rtp_mux_debug);
|
||||
#define GST_CAT_DEFAULT gst_rtp_mux_debug
|
||||
|
||||
/* elementfactory information */
|
||||
static const GstElementDetails gst_rtp_mux_details =
|
||||
GST_ELEMENT_DETAILS ("RTP muxer",
|
||||
"Codec/Muxer",
|
||||
"multiplex N rtp streams into one",
|
||||
"Zeeshan Ali <first.last@nokia.com>");
|
||||
|
||||
enum
|
||||
{
|
||||
ARG_0,
|
||||
|
@ -111,7 +104,9 @@ gst_rtp_mux_base_init (gpointer g_class)
|
|||
gst_element_class_add_pad_template (element_class,
|
||||
gst_static_pad_template_get (&sink_factory));
|
||||
|
||||
gst_element_class_set_details (element_class, &gst_rtp_mux_details);
|
||||
gst_element_class_set_details_simple (element_class, "RTP muxer",
|
||||
"Codec/Muxer",
|
||||
"multiplex N rtp streams into one", "Zeeshan Ali <first.last@nokia.com>");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue