HomeSort by relevance Sort by last modified time
    Searched refs:sf_index (Results 1 - 3 of 3) sorted by null

  /external/aac/libMpegTPDec/include/
tp_data.h 420 UINT sf_index; local
423 for (sf_index = 0; sf_index < tableSize; sf_index++) {
424 if (SamplingRateTable[sf_index] == samplingRate) break;
427 if (sf_index > tableSize) {
431 return sf_index;
  /external/aac/libMpegTPEnc/include/
tp_data.h 420 UINT sf_index; local
423 for (sf_index = 0; sf_index < tableSize; sf_index++) {
424 if (SamplingRateTable[sf_index] == samplingRate) break;
427 if (sf_index > tableSize) {
431 return sf_index;
  /frameworks/av/media/extractors/aac/
AACExtractor.cpp 72 uint32_t get_sample_rate(const uint8_t sf_index)
80 if (sf_index < sizeof(sample_rates) / sizeof(sample_rates[0])) {
81 return sample_rates[sf_index];
138 uint8_t profile, sf_index, channel, header[2]; local
144 sf_index = (header[0] >> 2) & 0xf;
145 uint32_t sr = get_sample_rate(sf_index);
152 MakeAACCodecSpecificData(mMeta, profile, sf_index, channel);

Completed in 1122 milliseconds