mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-04 22:48:54 +00:00
bluez: Fix channel mode string from dual to dual-channel.
This commit is contained in:
parent
7bc4d8ee9e
commit
4fd14e4113
1 changed files with 1 additions and 1 deletions
|
@ -778,7 +778,7 @@ gst_avdtp_sink_get_channel_mode (const gchar * mode)
|
|||
return BT_A2DP_CHANNEL_MODE_STEREO;
|
||||
else if (strcmp (mode, "joint-stereo") == 0)
|
||||
return BT_A2DP_CHANNEL_MODE_JOINT_STEREO;
|
||||
else if (strcmp (mode, "dual") == 0)
|
||||
else if (strcmp (mode, "dual-channel") == 0)
|
||||
return BT_A2DP_CHANNEL_MODE_DUAL_CHANNEL;
|
||||
else if (strcmp (mode, "mono") == 0)
|
||||
return BT_A2DP_CHANNEL_MODE_MONO;
|
||||
|
|
Loading…
Reference in a new issue