summaryrefslogtreecommitdiffstats
path: root/audio/effect/5.0/IVisualizerEffect.hal
blob: 38752a9d93dce7d2612b0030a573f4592035361c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
 * Copyright (C) 2018 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.
 */

package android.hardware.audio.effect@5.0;

import android.hardware.audio.common@5.0;
import IEffect;

interface IVisualizerEffect extends IEffect {
    enum CaptureSizeRange : int32_t {
        MAX = 1024,  // maximum capture size in samples
        MIN = 128    // minimum capture size in samples
    };

    /**
     * Sets the number PCM samples in the capture.
     */
    setCaptureSize(uint16_t captureSize) generates (Result retval);

    /**
     * Gets the number PCM samples in the capture.
     */
    getCaptureSize() generates (Result retval, uint16_t captureSize);

    enum ScalingMode : int32_t {
        // Keep in sync with SCALING_MODE_... in
        // frameworks/base/media/java/android/media/audiofx/Visualizer.java
        NORMALIZED = 0,
        AS_PLAYED = 1
    };

    /**
     * Specifies the way the captured data is scaled.
     */
    setScalingMode(ScalingMode scalingMode) generates (Result retval);

    /**
     * Retrieves the way the captured data is scaled.
     */
    getScalingMode() generates (Result retval, ScalingMode scalingMode);

    /**
     * Informs the visualizer about the downstream latency.
     */
    setLatency(uint32_t latencyMs) generates (Result retval);

    /**
     * Gets the downstream latency.
     */
    getLatency() generates (Result retval, uint32_t latencyMs);

    enum MeasurementMode : int32_t {
        // Keep in sync with MEASUREMENT_MODE_... in
        // frameworks/base/media/java/android/media/audiofx/Visualizer.java
        NONE = 0x0,
        PEAK_RMS = 0x1
    };

    /**
     * Specifies which measurements are to be made.
     */
    setMeasurementMode(MeasurementMode measurementMode)
            generates (Result retval);

    /**
     * Retrieves which measurements are to be made.
     */
    getMeasurementMode() generates (
            Result retval, MeasurementMode measurementMode);

    /**
     * Retrieves the latest PCM snapshot captured by the visualizer engine.  The
     * number of samples to capture is specified by 'setCaptureSize' parameter.
     *
     * @return retval operation completion status.
     * @return samples samples in 8 bit unsigned format (0 = 0x80)
     */
    capture() generates (Result retval, vec<uint8_t> samples);

    struct Measurement {
        MeasurementMode mode;    // discriminator
        union Values {
            struct PeakAndRms {
                int32_t peakMb;  // millibels
                int32_t rmsMb;   // millibels
            } peakAndRms;
        } value;
    };
    /**
     * Retrieves the latest measurements. The measurements to be made
     * are specified by 'setMeasurementMode' parameter.
     *
     * @return retval operation completion status.
     * @return result measurement.
     */
    measure() generates (Result retval, Measurement result);
};