summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Michel Trivi <jmtrivi@google.com>2013-09-10 09:05:49 -0700
committerJean-Michel Trivi <jmtrivi@google.com>2013-09-16 11:25:40 -0700
commit6ab7102ff46d708c86e1b7819d475c387d50d005 (patch)
tree740e1ffc7d8859e1848915185caa012f70596e80
parent7359406a91073a5ed586ec0b64c0508d8fda5729 (diff)
downloadandroid_system_media-6ab7102ff46d708c86e1b7819d475c387d50d005.tar.gz
android_system_media-6ab7102ff46d708c86e1b7819d475c387d50d005.tar.bz2
android_system_media-6ab7102ff46d708c86e1b7819d475c387d50d005.zip
Audio effect header for loudness enhancement
Not defined in OpenSL ES. Single parameter: target gain, in mB Bug 8413913 Change-Id: I088009b7471b21502cbeb84a668ebe3484aaea84
-rw-r--r--audio_effects/include/audio_effects/effect_loudnessenhancer.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/audio_effects/include/audio_effects/effect_loudnessenhancer.h b/audio_effects/include/audio_effects/effect_loudnessenhancer.h
new file mode 100644
index 00000000..c5bcaee8
--- /dev/null
+++ b/audio_effects/include/audio_effects/effect_loudnessenhancer.h
@@ -0,0 +1,45 @@
+/*
+ * Copyright (C) 2013 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef ANDROID_EFFECT_LOUDNESS_ENHANCER_H_
+#define ANDROID_EFFECT_LOUDNESS_ENHANCER_H_
+
+#include <hardware/audio_effect.h>
+
+#if __cplusplus
+extern "C" {
+#endif
+
+// this effect is not defined in OpenSL ES as one of the standard effects
+static const effect_uuid_t FX_IID_LOUDNESS_ENHANCER_ =
+ {0xfe3199be, 0xaed0, 0x413f, 0x87bb, {0x11, 0x26, 0x0e, 0xb6, 0x3c, 0xf1}};
+const effect_uuid_t * const FX_IID_LOUDNESS_ENHANCER = &FX_IID_LOUDNESS_ENHANCER_;
+
+#define LOUDNESS_ENHANCER_DEFAULT_TARGET_GAIN_MB 0 // mB
+
+// enumerated parameters for DRC effect
+// to keep in sync with frameworks/base/media/java/android/media/audiofx/LoudnessEnhancer.java
+typedef enum
+{
+ LOUDNESS_ENHANCER_PARAM_TARGET_GAIN_MB = 0,// target gain expressed in mB
+} t_level_monitor_params;
+
+#if __cplusplus
+} // extern "C"
+#endif
+
+
+#endif /*ANDROID_EFFECT_LOUDNESS_ENHANCER_H_*/