HomeSort by relevance Sort by last modified time
    Searched refs:AAC (Results 1 - 25 of 40) sorted by null

1 2

  /external/chromium_org/media/mp4/
aac.h 20 // This class parses the AAC information from decoder specific information
24 class MEDIA_EXPORT AAC {
26 AAC();
27 ~AAC();
29 // Parse the AAC config from the raw binary data embedded in esds box.
35 // Gets the output sample rate for the AAC stream.
42 // Gets the channel layout for the AAC stream.
49 // This function converts a raw AAC frame into an AAC frame with an ADTS
70 // The following variables store the AAC specific configuration informatio
    [all...]
aac.cc 5 #include "media/mp4/aac.h"
47 AAC::AAC()
52 AAC::~AAC() {
55 bool AAC::Parse(const std::vector<uint8>& data) {
94 // Note: The check for 16 available bits comes from the AAC spec.
111 // Note: The check for 12 available bits comes from the AAC spec.
145 int AAC::GetOutputSamplesPerSecond(bool sbr_in_mimetype) const {
154 // to SBR doubling the AAC sample rate.
    [all...]
aac_unittest.cc 5 #include "media/mp4/aac.h"
14 AAC aac; local
20 EXPECT_TRUE(aac.Parse(data));
21 EXPECT_EQ(aac.GetOutputSamplesPerSecond(false), 44100);
22 EXPECT_EQ(aac.GetChannelLayout(false), CHANNEL_LAYOUT_STEREO);
26 AAC aac; local
32 EXPECT_TRUE(aac.Parse(data));
33 EXPECT_EQ(aac.GetOutputSamplesPerSecond(false), 48000)
43 AAC aac; local
62 AAC aac; local
80 AAC aac; local
92 AAC aac; local
102 AAC aac; local
118 AAC aac; local
132 AAC aac; local
    [all...]
mp4_stream_parser.h 71 bool PrepareAACBuffer(const AAC& aac_config,
mp4_stream_parser.cc 198 const AAC& aac = entry.esds.aac; local
224 // Check if it is MPEG4 AAC defined in ISO 14496 Part 3 or
225 // supported MPEG2 AAC varients.
228 channel_layout = aac.GetChannelLayout(has_sbr_);
229 sample_per_second = aac.GetOutputSamplesPerSecond(has_sbr_);
231 extra_data = aac.codec_specific_data();
386 const AAC& aac_config, std::vector<uint8>* frame_buf,
391 // As above, adjust subsample information to account for the headers. AAC i
    [all...]
box_definitions.h 14 #include "media/mp4/aac.h"
192 AAC aac; member in struct:media::mp4::ElementaryStreamDescriptor
  /external/clang/test/CodeGenCXX/
2003-11-27-MultipleInheritanceThunk.cpp 28 AliasAnalysisCounter AAC;
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_dec/src/
Android.mk 28 LOCAL_MODULE:= libOMX.TI.AAC.decode
Makefile 40 COMPONENT_LIB=libOMX.TI.AAC.decode.so
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_enc/src/
Android.mk 27 LOCAL_MODULE:= libOMX.TI.AAC.encode
Makefile 40 COMPONENT_LIB=libOMX.TI.AAC.encode.so
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
H264R1080pAacLongPlayerTest.java 30 super(CamcorderProfile.QUALITY_1080P, VideoEncoder.H264, AudioEncoder.AAC);
H264R1080pAacRepeatedPlayerTest.java 30 super(CamcorderProfile.QUALITY_1080P, VideoEncoder.H264, AudioEncoder.AAC);
H264R480pAacLongPlayerTest.java 30 super(CamcorderProfile.QUALITY_480P, VideoEncoder.H264, AudioEncoder.AAC);
H264R720pAacLongPlayerTest.java 31 super(CamcorderProfile.QUALITY_720P, VideoEncoder.H264, AudioEncoder.AAC);
H264R1080pAacShortPlayerTest.java 32 super(CamcorderProfile.QUALITY_1080P, VideoEncoder.H264, AudioEncoder.AAC);
H264R480pAacShortPlayerTest.java 41 super(CamcorderProfile.QUALITY_480P, VideoEncoder.H264, AudioEncoder.AAC);
H264R720pAacShortPlayerTest.java 42 super(CamcorderProfile.QUALITY_720P, VideoEncoder.H264, AudioEncoder.AAC);
NativeMediaTest.java 96 (profile.audioCodec == AudioEncoder.AAC)) {
  /hardware/qcom/audio/legacy/alsa_sound/
AudioUtil.h 33 AAC,
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaProfileReader.java 90 audioEncoder != MediaRecorder.AudioEncoder.AAC &&
129 audioEncoderMap.put(MediaRecorder.AudioEncoder.AAC, "aac");
  /frameworks/av/media/libstagefright/mpeg2ts/
ESQueue.h 34 AAC,
  /external/chromium_org/media/filters/
audio_file_reader_unittest.cc 119 TEST_F(AudioFileReaderTest, AAC) {
  /frameworks/av/media/libstagefright/codecs/common/include/
voIndex.h 106 _MAKE_CODEC_ID (0x210000, AAC)
  /external/grub/netboot/
depca.c 265 #define AAC 0x0008 /* Address ROM Address Counter (1->enable) */
677 nicsr |= AAC;

Completed in 826 milliseconds

1 2