summaryrefslogtreecommitdiffstats
path: root/include/hardware/audio_effect.h
diff options
context:
space:
mode:
authorJean-Michel Trivi <jmtrivi@google.com>2012-03-05 11:44:30 -0800
committerJean-Michel Trivi <jmtrivi@google.com>2012-03-05 11:44:30 -0800
commita9a5f5d57fbcf0f953b940788625404dbcd2cc52 (patch)
treecbbed7c05442316109db844f3c4bb4b251631868 /include/hardware/audio_effect.h
parentd543b8ae4a38267a749e9a3e333455fb1209ab13 (diff)
downloadhardware_libhardware-a9a5f5d57fbcf0f953b940788625404dbcd2cc52.zip
hardware_libhardware-a9a5f5d57fbcf0f953b940788625404dbcd2cc52.tar.gz
hardware_libhardware-a9a5f5d57fbcf0f953b940788625404dbcd2cc52.tar.bz2
Update comments to reflect audio channel mask type name change
Replace references to "audio_channels_t" by "audio_channel_mask_t" Change-Id: If779a4c24e40c0fcdab8376b479bd20040d686da
Diffstat (limited to 'include/hardware/audio_effect.h')
-rw-r--r--include/hardware/audio_effect.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hardware/audio_effect.h b/include/hardware/audio_effect.h
index 39cbf83..65eba36 100644
--- a/include/hardware/audio_effect.h
+++ b/include/hardware/audio_effect.h
@@ -715,7 +715,7 @@ enum effect_command_e {
// Audio buffer descriptor used by process(), bufferProvider() functions and buffer_config_t
// structure. Multi-channel audio is always interleaved. The channel order is from LSB to MSB with
-// regard to the channel mask definition in audio.h, audio_channels_t e.g :
+// regard to the channel mask definition in audio.h, audio_channel_mask_t e.g :
// Stereo: left, right
// 5 point 1: front left, front right, front center, low frequency, back left, back right
// The buffer size is expressed in frame count, a frame being composed of samples for all
@@ -759,7 +759,7 @@ typedef struct buffer_provider_s {
typedef struct buffer_config_s {
audio_buffer_t buffer; // buffer for use by process() function if not passed explicitly
uint32_t samplingRate; // sampling rate
- uint32_t channels; // channel mask (see audio_channels_t in audio.h)
+ uint32_t channels; // channel mask (see audio_channel_mask_t in audio.h)
buffer_provider_t bufferProvider; // buffer provider
uint8_t format; // Audio format (see see audio_format_t in audio.h)
uint8_t accessMode; // read/write or accumulate in buffer (effect_buffer_access_e)