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

  /frameworks/wilhelm/src/android/
AacBqToPcmCbRenderer.cpp 53 const uint8_t protectionAbsent = data[offset+1] & 0x1;
59 // protectionAbsent is 0 if there is CRC
62 size_t headSize = protectionAbsent ? kAdtsHeaderLengthNoCrc : kAdtsHeaderLengthWithCrc;
  /frameworks/av/media/libstagefright/
AACExtractor.cpp 110 uint8_t protectionAbsent;
111 if (source->readAt(offset + 1, &protectionAbsent, 1) < 1) {
114 protectionAbsent &= 0x1;
123 // protectionAbsent is 0 if there is CRC
124 size_t headSize = protectionAbsent ? kAdtsHeaderLengthNoCrc : kAdtsHeaderLengthWithCrc;
  /frameworks/wilhelm/src/android/util/
AacAdtsExtractor.cpp 72 const uint8_t protectionAbsent = syncword[1] & 0x1;
77 // protectionAbsent is 0 if there is CRC
80 size_t headSize = protectionAbsent ? kAdtsHeaderLengthNoCrc : kAdtsHeaderLengthWithCrc;
  /frameworks/av/media/libstagefright/codecs/aacdec/
SoftAAC.cpp 333 bool protectionAbsent = (adtsHeader[1] & 1);
348 adtsHeaderSize = (protectionAbsent ? 7 : 9);
SoftAAC2.cpp 366 bool protectionAbsent = (adtsHeader[1] & 1);
381 adtsHeaderSize = (protectionAbsent ? 7 : 9);

Completed in 61 milliseconds