mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
Use gst_element_class_set_static_metadata()
where possible. Avoids some string copies. Also re-indent some stuff. Also some indent fixes here and there.
This commit is contained in:
parent
18638c9c4e
commit
17742d2347
2 changed files with 2 additions and 2 deletions
|
@ -70,7 +70,7 @@ gst_rtp_opus_depay_class_init (GstRTPOpusDepayClass * klass)
|
|||
gst_static_pad_template_get (&gst_rtp_opus_depay_src_template));
|
||||
gst_element_class_add_pad_template (element_class,
|
||||
gst_static_pad_template_get (&gst_rtp_opus_depay_sink_template));
|
||||
gst_element_class_set_metadata (element_class,
|
||||
gst_element_class_set_static_metadata (element_class,
|
||||
"RTP Opus packet depayloader", "Codec/Depayloader/Network/RTP",
|
||||
"Extracts Opus audio from RTP packets",
|
||||
"Danilo Cesar Lemes de Paula <danilo.cesar@collabora.co.uk>");
|
||||
|
|
|
@ -75,7 +75,7 @@ gst_rtp_opus_pay_class_init (GstRtpOPUSPayClass * klass)
|
|||
gst_element_class_add_pad_template (element_class,
|
||||
gst_static_pad_template_get (&gst_rtp_opus_pay_sink_template));
|
||||
|
||||
gst_element_class_set_metadata (element_class,
|
||||
gst_element_class_set_static_metadata (element_class,
|
||||
"RTP Opus payloader",
|
||||
"Codec/Payloader/Network/RTP",
|
||||
"Puts Opus audio in RTP packets",
|
||||
|
|
Loading…
Reference in a new issue