diff options
| author | Eric Laurent <elaurent@google.com> | 2013-09-12 17:49:30 -0700 |
|---|---|---|
| committer | Eric Laurent <elaurent@google.com> | 2013-09-12 17:49:30 -0700 |
| commit | 86e1713c4eb1378823c1f544f0fea2339c08f393 (patch) | |
| tree | 7d7a322e9c5ce513b25d795b5ac68ffe4935d92b /hal | |
| parent | 2ccd7babcde54a8073945dec69660cb60e66a931 (diff) | |
| download | android_hardware_qcom_audio-86e1713c4eb1378823c1f544f0fea2339c08f393.tar.gz android_hardware_qcom_audio-86e1713c4eb1378823c1f544f0fea2339c08f393.tar.bz2 android_hardware_qcom_audio-86e1713c4eb1378823c1f544f0fea2339c08f393.zip | |
audio: enable AAC offload
Bug: 8174410.
Change-Id: I343a35b90a2b21ea7954856ac7f73b9f5a07e0f2
Diffstat (limited to 'hal')
| -rw-r--r-- | hal/audio_hw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hal/audio_hw.c b/hal/audio_hw.c index 404f17c8..24cfaf9d 100644 --- a/hal/audio_hw.c +++ b/hal/audio_hw.c @@ -127,8 +127,8 @@ static const struct string_to_enum out_channels_name_to_enum_table[] = { static bool is_supported_format(audio_format_t format) { - if (format == AUDIO_FORMAT_MP3 /*|| - format == AUDIO_FORMAT_AAC */) + if (format == AUDIO_FORMAT_MP3 || + format == AUDIO_FORMAT_AAC) return true; return false; |
