blob: 45bac5acf5a6636a1f1cad937c1ab42f8e53b079 [file] [log] [blame]
Eric Laurent96309252011-06-17 09:02:12 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_EFFECT_VISUALIZER_H_
18#define ANDROID_EFFECT_VISUALIZER_H_
19
20#include <hardware/audio_effect.h>
21
22#if __cplusplus
23extern "C" {
24#endif
25
26#ifndef OPENSL_ES_H_
27static const effect_uuid_t SL_IID_VISUALIZATION_ =
28 { 0xe46b26a0, 0xdddd, 0x11db, 0x8afd, { 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b } };
29const effect_uuid_t * const SL_IID_VISUALIZATION = &SL_IID_VISUALIZATION_;
30#endif //OPENSL_ES_H_
31
32#define VISUALIZER_CAPTURE_SIZE_MAX 1024 // maximum capture size in samples
33#define VISUALIZER_CAPTURE_SIZE_MIN 128 // minimum capture size in samples
34
Jean-Michel Trivi94081332012-04-15 17:20:23 -070035// to keep in sync with frameworks/base/media/java/android/media/audiofx/Visualizer.java
36#define VISUALIZER_SCALING_MODE_NORMALIZED 0
37#define VISUALIZER_SCALING_MODE_AS_PLAYED 1
38
Eric Laurent96309252011-06-17 09:02:12 -070039/* enumerated parameters for Visualizer effect */
40typedef enum
41{
Jean-Michel Trivi94081332012-04-15 17:20:23 -070042 VISUALIZER_PARAM_CAPTURE_SIZE, // Sets the number PCM samples in the capture.
43 VISUALIZER_PARAM_SCALING_MODE, // Sets the way the captured data is scaled
Eric Laurent96309252011-06-17 09:02:12 -070044} t_visualizer_params;
45
46/* commands */
47typedef enum
48{
49 VISUALIZER_CMD_CAPTURE = EFFECT_CMD_FIRST_PROPRIETARY, // Gets the latest PCM capture.
50}t_visualizer_cmds;
51
52// VISUALIZER_CMD_CAPTURE retrieves the latest PCM snapshot captured by the visualizer engine.
53// It returns the number of samples specified by VISUALIZER_PARAM_CAPTURE_SIZE
54// in 8 bit unsigned format (0 = 0x80)
55
56#if __cplusplus
57} // extern "C"
58#endif
59
60
61#endif /*ANDROID_EFFECT_VISUALIZER_H_*/