No description
Find a file
Pranav Vashi 393cac7b12 dolby: Fix compilation error in TooltipIconButton
Fixes: TooltipIconButton.kt:30:44: error: unresolved reference: rememberPlainTooltipPositionProvider

Change-Id: I7554622a406f4a56dc8471a39cbd4ad73c0daede
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
2025-04-08 00:17:10 +00:00
configs dolby: Apply NLSound 4.1 2025-01-29 03:49:45 +05:30
DSPVolumeSynchronizer dolby: Implement DSPVolumeSynchronizer 2025-01-23 04:50:45 +05:30
overlay/DolbyFrameworksResCommon dolby: Initialized Spatial Audio 2024-12-06 12:32:59 +05:30
proprietary/vendor dolby: Update from Global HyperOS with ELF checks enabled 2025-03-26 05:41:10 +05:30
RemovePackagesDolby dolby: Add Remove Packages for Dolby Environment 2024-03-16 09:38:34 +05:30
sepolicy/vendor Import OOS-11 dolby from OP9R (11.2.8.8) 2022-11-28 00:34:41 +05:30
XiaomiDolby dolby: Fix compilation error in TooltipIconButton 2025-04-08 00:17:10 +00:00
Android.bp dolby: Enable ELF checks for libspatialaudio 2025-04-01 06:11:18 +05:30
dolby.mk dolby: Enable ELF checks for libspatialaudio 2025-04-01 06:11:18 +05:30
dolby_framework_matrix.xml dolby: DaxUI: Remove bass enhancer switch 2024-01-15 22:56:43 +05:30
README.mkdn dolby: Update readme 2025-03-26 05:46:36 +05:30
vendor.dolby.hardware.dms@2.0-service.xml Import OOS-11 dolby from OP9R (11.2.8.8) 2022-11-28 00:34:41 +05:30

Xiaomi Dolby
==============

Getting Started
---------------
For dolby media codecs to work add this line in your media codecs config (should be in vendor partition) :-

```bash
<Include href="media_codecs_dolby_audio.xml" />
```

To build, add the dolby effects in your device's audio effects config then inherit the dolby config by adding this in your device's makefile :-

```bash
$(call inherit-product, hardware/dolby/dolby.mk)
```

Now, moving hidl definitions in manifest to device trees is completely absurd so stop overriding manifest in your device trees an example for such would be :-

Changing these in BoardConfig makefile of your device tree:-

```bash
DEVICE_FRAMEWORK_COMPATIBILITY_MATRIX_FILE :=
```
And

```bash
DEVICE_MANIFEST_FILE :=
```

To:-

```bash
DEVICE_FRAMEWORK_COMPATIBILITY_MATRIX_FILE +=
```
And

```bash
DEVICE_MANIFEST_FILE +=
```

The only change done above is changing := symbol to += so that manifest can't be overriden from device tree in BoardConfig makefile.

At the end an example commit to properly implement it in your device tree could be :-

[**1**] https://github.com/Spanish-or-Vanish/android_device_xiaomi_sm8350-common/commit/2295d515b2d24cb94cc0545b0f80c20ca93af761

[**2**] https://github.com/Spanish-or-Vanish/android_device_xiaomi_sm8350-common/commit/acbc197257083339b9d1b738c5b613f4a0feec7f

[**3**] https://github.com/Spanish-or-Vanish/android_device_xiaomi_sm8350-common/commit/e64cfcc3382ac6915d7d513ef7a69a64eb00659c

[**4**] https://github.com/Spanish-or-Vanish/android_device_xiaomi_sm8350-common/commit/463cd46921e1451c9b8315334f8cf01998469b6d

[**5**] https://github.com/Spanish-or-Vanish/android_device_xiaomi_sm8350-common/commit/17b01ad83900942eb78d51975cf8640676953b0e

# Credits:
 * [**HELLBOY017**](https://github.com/HELLBOY017)
 * [**adithya2306**](https://github.com/adithya2306)
 * [**johnmart19**](https://github.com/johnmart19)
 * [**userariii**](https://github.com/userariii)