diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2011-02-13 17:51:45 -0800 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2013-03-27 22:21:17 +0000 |
commit | 5514d457a180b37949c47692ad9e2ecad31f9932 (patch) | |
tree | 50f22c0624e0cc59f4c3102894f67e5c160f4f60 | |
parent | df140f78524900d4d1d453f536e63fcd06a9999d (diff) | |
download | gstreamer-plugins-bad-5514d457a180b37949c47692ad9e2ecad31f9932.tar.gz |
sbc: audio: Remove workaround for compiler warnings
-rw-r--r-- | ext/sbc/gstsbcdec.h | 2 | ||||
-rw-r--r-- | ext/sbc/gstsbcenc.h | 2 | ||||
-rw-r--r-- | ext/sbc/gstsbcparse.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/ext/sbc/gstsbcdec.h b/ext/sbc/gstsbcdec.h index 6a15fb043..c77feaed3 100644 --- a/ext/sbc/gstsbcdec.h +++ b/ext/sbc/gstsbcdec.h @@ -59,7 +59,7 @@ struct _GstSbcDecClass { GstElementClass parent_class; }; -//GType gst_sbc_dec_get_type(void); +GType gst_sbc_dec_get_type(void); gboolean gst_sbc_dec_plugin_init(GstPlugin *plugin); diff --git a/ext/sbc/gstsbcenc.h b/ext/sbc/gstsbcenc.h index 0c8508b25..0329351fa 100644 --- a/ext/sbc/gstsbcenc.h +++ b/ext/sbc/gstsbcenc.h @@ -68,7 +68,7 @@ struct _GstSbcEncClass { GstElementClass parent_class; }; -//GType gst_sbc_enc_get_type(void); +GType gst_sbc_enc_get_type(void); gboolean gst_sbc_enc_plugin_init(GstPlugin *plugin); diff --git a/ext/sbc/gstsbcparse.h b/ext/sbc/gstsbcparse.h index d7331adf8..ecb8be426 100644 --- a/ext/sbc/gstsbcparse.h +++ b/ext/sbc/gstsbcparse.h @@ -62,7 +62,7 @@ struct _GstSbcParseClass { GstElementClass parent_class; }; -//GType gst_sbc_parse_get_type(void); +GType gst_sbc_parse_get_type(void); gboolean gst_sbc_parse_plugin_init(GstPlugin *plugin); |