Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0eb80390 authored by Jakub Pawłowski's avatar Jakub Pawłowski Committed by Automerger Merge Worker
Browse files

Merge "le_audio: Set proper frame for XX_1 BAP configurations" am: f23c2816...

Merge "le_audio: Set proper frame for XX_1 BAP configurations" am: f23c2816 am: eaa50b27 am: c26340e7

Original change: https://android-review.googlesource.com/c/platform/packages/modules/Bluetooth/+/2334002



Change-Id: I7589c003c22bbf244b3743d1774a5d10c97ae5cc
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 23ac941a c26340e7
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -4815,7 +4815,7 @@
                            "type": 2,
                            "compound_value": {
                                "value": [
                                    1
                                    0
                                ]
                            }
                        },
@@ -5087,7 +5087,7 @@
                            "type": 2,
                            "compound_value": {
                                "value": [
                                    1
                                    0
                                ]
                            }
                        },
@@ -5359,7 +5359,7 @@
                            "type": 2,
                            "compound_value": {
                                "value": [
                                    1
                                    0
                                ]
                            }
                        },
@@ -5631,7 +5631,7 @@
                            "type": 2,
                            "compound_value": {
                                "value": [
                                    1
                                    0
                                ]
                            }
                        },
@@ -5699,7 +5699,7 @@
                            "type": 2,
                            "compound_value": {
                                "value": [
                                    1
                                    0
                                ]
                            }
                        },
@@ -5767,7 +5767,7 @@
                            "type": 2,
                            "compound_value": {
                                "value": [
                                    1
                                    0
                                ]
                            }
                        },
@@ -5835,7 +5835,7 @@
                            "type": 2,
                            "compound_value": {
                                "value": [
                                    1
                                    0
                                ]
                            }
                        },
+3 −2
Original line number Diff line number Diff line
@@ -223,8 +223,9 @@ bool IsLc3SettingSupported(LeAudioContextType context_type, Lc3SettingId id) {
    case LeAudioContextType::EMERGENCYALARM:
    case LeAudioContextType::UNSPECIFIED:
      if (id == Lc3SettingId::LC3_16_1 || id == Lc3SettingId::LC3_16_2 ||
          id == Lc3SettingId::LC3_48_4 || id == Lc3SettingId::LC3_48_2 ||
          id == Lc3SettingId::LC3_VND_1 || id == Lc3SettingId::LC3_24_2)
          id == Lc3SettingId::LC3_48_4 || id == Lc3SettingId::LC3_48_1 ||
          id == Lc3SettingId::LC3_48_2 || id == Lc3SettingId::LC3_VND_1 ||
          id == Lc3SettingId::LC3_24_2)
        return true;

      break;