summaryrefslogtreecommitdiff
path: root/ext/sbc
diff options
context:
space:
mode:
authorAnderson Lizardo <anderson.lizardo@openbossa.org>2012-08-21 11:49:24 -0400
committerTim-Philipp Müller <tim@centricular.net>2013-03-27 22:21:17 +0000
commit6979975963e60f47dfd4a6ccffe3eb26913d64dc (patch)
treea771f2e8c073cebda1aaaa21a7578e1e45050811 /ext/sbc
parent142a5fb63776f59594630ab55f12929b8d2e62e4 (diff)
sbc: Fix trivial coding style issues on pointer declarations and casting
Avoid using C++ style pointer declarations like "char* ptr", as most BlueZ code uses "char *ptr".
Diffstat (limited to 'ext/sbc')
-rw-r--r--ext/sbc/gstsbcutil.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/sbc/gstsbcutil.h b/ext/sbc/gstsbcutil.h
index 5e47119516..962532f786 100644
--- a/ext/sbc/gstsbcutil.h
+++ b/ext/sbc/gstsbcutil.h
@@ -59,16 +59,16 @@ gint gst_sbc_parse_mode_to_sbc(const gchar *mode);
const gchar *gst_sbc_parse_allocation_from_sbc(gint alloc);
gint gst_sbc_parse_allocation_to_sbc(const gchar *allocation);
-GstCaps* gst_sbc_parse_caps_from_sbc(sbc_t *sbc);
+GstCaps *gst_sbc_parse_caps_from_sbc(sbc_t *sbc);
-GstCaps* gst_sbc_util_caps_fixate(GstCaps *caps, gchar** error_message);
+GstCaps *gst_sbc_util_caps_fixate(GstCaps *caps, gchar **error_message);
void gst_sbc_util_set_structure_int_param(GstStructure *structure,
- const gchar* field, gint field_value,
+ const gchar *field, gint field_value,
GValue *value);
void gst_sbc_util_set_structure_string_param(GstStructure *structure,
- const gchar* field, const gchar* field_value,
+ const gchar *field, const gchar *field_value,
GValue *value);
gboolean gst_sbc_util_fill_sbc_params(sbc_t *sbc, GstCaps *caps);