// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_FORMATS_MP4_AAC_H_ #define MEDIA_FORMATS_MP4_AAC_H_ #include <stdint.h> #include <vector> #include "base/containers/heap_array.h" #include "base/containers/span.h" #include "media/base/audio_codecs.h" #include "media/base/channel_layout.h" #include "media/base/media_export.h" #include "media/base/media_log.h" namespace media { class BitReader; namespace mp4 { // This class parses the AAC information from decoder specific information // embedded in the esds box in an ISO BMFF file. // Please refer to ISO 14496 Part 3 Table 1.13 - Syntax of AudioSpecificConfig // for more details. class MEDIA_EXPORT AAC { … }; } // namespace mp4 } // namespace media #endif // MEDIA_FORMATS_MP4_AAC_H_