diff options
| author | Eric Laurent <elaurent@google.com> | 2012-08-24 14:29:56 -0700 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-08-24 14:29:57 -0700 |
| commit | b0c1e303913f606dca15bfb75c029f3d4a1ab04c (patch) | |
| tree | ab5fd76968ff644d0dc3d73c694dda4f025249ca /media/libeffects/lvm/wrapper/Bundle/EffectBundle.cpp | |
| parent | ff3f75c3e827c1c1f3e3a11b1de46b19444af197 (diff) | |
| parent | e44615ff6022239850a3ea459ad6e07b44c37544 (diff) | |
| download | frameworks_av-b0c1e303913f606dca15bfb75c029f3d4a1ab04c.zip frameworks_av-b0c1e303913f606dca15bfb75c029f3d4a1ab04c.tar.gz frameworks_av-b0c1e303913f606dca15bfb75c029f3d4a1ab04c.tar.bz2 | |
Merge "Reduce THD when equalizer is ON." into jb-mr1-dev
Diffstat (limited to 'media/libeffects/lvm/wrapper/Bundle/EffectBundle.cpp')
| -rw-r--r-- | media/libeffects/lvm/wrapper/Bundle/EffectBundle.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/media/libeffects/lvm/wrapper/Bundle/EffectBundle.cpp b/media/libeffects/lvm/wrapper/Bundle/EffectBundle.cpp index 1a45e35..32ee89e 100644 --- a/media/libeffects/lvm/wrapper/Bundle/EffectBundle.cpp +++ b/media/libeffects/lvm/wrapper/Bundle/EffectBundle.cpp @@ -698,10 +698,10 @@ int LvmBundle_init(EffectContext *pContext){ /* Set the headroom parameters */ HeadroomBandDef[0].Limit_Low = 20; HeadroomBandDef[0].Limit_High = 4999; - HeadroomBandDef[0].Headroom_Offset = 3; + HeadroomBandDef[0].Headroom_Offset = 0; HeadroomBandDef[1].Limit_Low = 5000; HeadroomBandDef[1].Limit_High = 24000; - HeadroomBandDef[1].Headroom_Offset = 4; + HeadroomBandDef[1].Headroom_Offset = 0; HeadroomParams.pHeadroomDefinition = &HeadroomBandDef[0]; HeadroomParams.Headroom_OperatingMode = LVM_HEADROOM_ON; HeadroomParams.NHeadroomBands = 2; |
