sbc: More coding style fixes

This commit is contained in:
Johan Hedberg 2008-12-20 21:42:49 +02:00 committed by Tim-Philipp Müller
parent 266cfb11b4
commit 7ae0c70682
2 changed files with 4 additions and 4 deletions

View file

@ -210,6 +210,6 @@ gst_sbc_dec_init (GstSbcDec * self, GstSbcDecClass * klass)
gboolean
gst_sbc_dec_plugin_init (GstPlugin * plugin)
{
return gst_element_register (plugin, "sbcdec",
GST_RANK_PRIMARY, GST_TYPE_SBC_DEC);
return gst_element_register (plugin, "sbcdec", GST_RANK_PRIMARY,
GST_TYPE_SBC_DEC);
}

View file

@ -215,6 +215,6 @@ gst_sbc_parse_init (GstSbcParse * self, GstSbcParseClass * klass)
gboolean
gst_sbc_parse_plugin_init (GstPlugin * plugin)
{
return gst_element_register (plugin, "sbcparse",
GST_RANK_NONE, GST_TYPE_SBC_PARSE);
return gst_element_register (plugin, "sbcparse", GST_RANK_NONE,
GST_TYPE_SBC_PARSE);
}