summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Taymans <wtaymans@redhat.com>2014-05-14 11:47:03 +0200
committerWim Taymans <wtaymans@redhat.com>2014-05-14 11:48:47 +0200
commitccccad4d8d02eabfa1f3041045b9a34acf4269a5 (patch)
tree8df9970456acff494c21cb38f8ed30a9479c9c05
parentce561913de80297a2c8b67d7f13911b0774501ea (diff)
downloadgstreamer-plugins-bad-ccccad4d8d02eabfa1f3041045b9a34acf4269a5.tar.gz
bluez: fix property names
These were forgotten when they got renamed. Fixes https://bugzilla.gnome.org/show_bug.cgi?id=729731
-rw-r--r--sys/bluez/gstavdtputil.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/bluez/gstavdtputil.c b/sys/bluez/gstavdtputil.c
index ed5c27650..caf7275a7 100644
--- a/sys/bluez/gstavdtputil.c
+++ b/sys/bluez/gstavdtputil.c
@@ -344,9 +344,9 @@ gst_avdtp_util_parse_sbc_raw (void *config)
gst_value_list_prepend_value (list, value);
}
if (gst_value_list_get_size (list) == 1)
- gst_structure_set_value (structure, "mode", value);
+ gst_structure_set_value (structure, "channel-mode", value);
else
- gst_structure_take_value (structure, "mode", list);
+ gst_structure_take_value (structure, "channel-mode", list);
g_value_unset (value);
g_value_reset (list);
@@ -406,9 +406,9 @@ gst_avdtp_util_parse_sbc_raw (void *config)
gst_value_list_prepend_value (list, value);
}
if (gst_value_list_get_size (list) == 1)
- gst_structure_set_value (structure, "allocation", value);
+ gst_structure_set_value (structure, "allocation-method", value);
else
- gst_structure_take_value (structure, "allocation", list);
+ gst_structure_take_value (structure, "allocation-method", list);
g_value_unset (value);
g_value_reset (list);