mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-08 12:51:21 +00:00
sbc: More coding style fixes
This commit is contained in:
parent
266cfb11b4
commit
7ae0c70682
2 changed files with 4 additions and 4 deletions
|
@ -210,6 +210,6 @@ gst_sbc_dec_init (GstSbcDec * self, GstSbcDecClass * klass)
|
||||||
gboolean
|
gboolean
|
||||||
gst_sbc_dec_plugin_init (GstPlugin * plugin)
|
gst_sbc_dec_plugin_init (GstPlugin * plugin)
|
||||||
{
|
{
|
||||||
return gst_element_register (plugin, "sbcdec",
|
return gst_element_register (plugin, "sbcdec", GST_RANK_PRIMARY,
|
||||||
GST_RANK_PRIMARY, GST_TYPE_SBC_DEC);
|
GST_TYPE_SBC_DEC);
|
||||||
}
|
}
|
||||||
|
|
|
@ -215,6 +215,6 @@ gst_sbc_parse_init (GstSbcParse * self, GstSbcParseClass * klass)
|
||||||
gboolean
|
gboolean
|
||||||
gst_sbc_parse_plugin_init (GstPlugin * plugin)
|
gst_sbc_parse_plugin_init (GstPlugin * plugin)
|
||||||
{
|
{
|
||||||
return gst_element_register (plugin, "sbcparse",
|
return gst_element_register (plugin, "sbcparse", GST_RANK_NONE,
|
||||||
GST_RANK_NONE, GST_TYPE_SBC_PARSE);
|
GST_TYPE_SBC_PARSE);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue