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:52:54 +0200
commit0e5cfb04aa5349b833830fa101f991ba9200b429 (patch)
tree963a8d7366cb82ffd5c198ad375f95818544dc52
parentf38fca1f5360b9af96f106786cc74570f5a79720 (diff)
downloadgstreamer-plugins-bad-0e5cfb04aa5349b833830fa101f991ba9200b429.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);