Searched refs:protectionAbsent (Results 1 - 5 of 5) sorted by relevance

/frameworks/wilhelm/src/android/
H A DAacBqToPcmCbRenderer.cpp54 const uint8_t protectionAbsent = data[offset+1] & 0x1; local
60 // protectionAbsent is 0 if there is CRC
63 size_t headSize = protectionAbsent ? kAdtsHeaderLengthNoCrc : kAdtsHeaderLengthWithCrc;
/frameworks/av/media/extractors/aac/
H A DAACExtractor.cpp110 uint8_t protectionAbsent; local
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/
H A DAacAdtsExtractor.cpp73 const uint8_t protectionAbsent = syncword[1] & 0x1; local
78 // protectionAbsent is 0 if there is CRC
81 size_t headSize = protectionAbsent ? kAdtsHeaderLengthNoCrc : kAdtsHeaderLengthWithCrc;
/frameworks/av/media/libstagefright/codecs/aacdec/
H A DSoftAAC2.cpp699 bool protectionAbsent = (adtsHeader[1] & 1); local
714 adtsHeaderSize = (protectionAbsent ? 7 : 9);
/frameworks/av/media/libstagefright/codecs/xaacdec/
H A DSoftXAAC.cpp630 bool protectionAbsent = (adtsHeader[1] & 1); local
644 adtsHeaderSize = (protectionAbsent ? 7 : 9);

Completed in 716 milliseconds