diff options
author | Eric Laurent <elaurent@google.com> | 2013-12-06 11:51:42 -0800 |
---|---|---|
committer | Eric Laurent <elaurent@google.com> | 2014-03-06 11:16:08 -0800 |
commit | f590f948e6c0fe3c54008dd7802fd513f127792d (patch) | |
tree | 1bd64930d69158418ac7c54c9d9a9b3a16dab973 /include | |
parent | 3c836e7882e88de42e0e600627de433b61e78621 (diff) | |
download | frameworks_av-f590f948e6c0fe3c54008dd7802fd513f127792d.zip frameworks_av-f590f948e6c0fe3c54008dd7802fd513f127792d.tar.gz frameworks_av-f590f948e6c0fe3c54008dd7802fd513f127792d.tar.bz2 |
stagefright: do not offload LD-AAC decoding
For now, do not offload LD and ELD AAC decoding because there
is no way to know if it is supported by the audio DSP implementation.
The longer term fix will be to have mapMimeToAudioFormat() use the
audio object type in track metadata to refine the AAC format and the
audio HAL list supported AAC profiles.
Bug: 11697128.
Change-Id: Iaa88ecf3f4ae42ad48c1b42a9b007dd80eb88147
Diffstat (limited to 'include')
-rw-r--r-- | include/media/stagefright/MetaData.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/media/stagefright/MetaData.h b/include/media/stagefright/MetaData.h index de3fc36..3a87474 100644 --- a/include/media/stagefright/MetaData.h +++ b/include/media/stagefright/MetaData.h @@ -134,6 +134,7 @@ enum { kKeyRequiresSecureBuffers = 'secu', // bool (int32_t) kKeyIsADTS = 'adts', // bool (int32_t) + kKeyAACAOT = 'aaot', // int32_t // If a MediaBuffer's data represents (at least partially) encrypted // data, the following fields aid in decryption. |