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

  /external/aac/libMpegTPDec/include/
tp_data.h 309 UINT sf_index, tableSize=sizeof(SamplingRateTable)/sizeof(UINT); local
311 for (sf_index=0; sf_index<tableSize; sf_index++) {
312 if( SamplingRateTable[sf_index] == samplingRate ) break;
315 if (sf_index>tableSize-1) {
319 return sf_index;
  /external/aac/libMpegTPEnc/include/
tp_data.h 309 UINT sf_index, tableSize=sizeof(SamplingRateTable)/sizeof(UINT); local
311 for (sf_index=0; sf_index<tableSize; sf_index++) {
312 if( SamplingRateTable[sf_index] == samplingRate ) break;
315 if (sf_index>tableSize-1) {
319 return sf_index;
  /frameworks/wilhelm/src/android/util/
AacAdtsExtractor.cpp 33 static uint32_t get_sample_rate(const uint8_t sf_index)
41 if (sf_index < sizeof(sample_rates) / sizeof(sample_rates[0])) {
42 return sample_rates[sf_index];
106 uint8_t profile, sf_index, channel, header[2]; local
114 sf_index = (header[0] >> 2) & 0xf;
115 uint32_t sr = get_sample_rate(sf_index);
126 mMeta = MakeAACCodecSpecificData(profile, sf_index, channel);
  /frameworks/av/media/libstagefright/
AACExtractor.cpp 75 uint32_t get_sample_rate(const uint8_t sf_index)
83 if (sf_index < sizeof(sample_rates) / sizeof(sample_rates[0])) {
84 return sample_rates[sf_index];
155 uint8_t profile, sf_index, channel, header[2]; local
161 sf_index = (header[0] >> 2) & 0xf;
162 uint32_t sr = get_sample_rate(sf_index);
168 mMeta = MakeAACCodecSpecificData(profile, sf_index, channel);

Completed in 4279 milliseconds