Home
last modified time | relevance | path

Searched refs:protectionAbsent (Results 1 – 7 of 7) sorted by relevance

/aosp12/frameworks/av/media/extractors/aac/
H A DAACExtractor.cpp109 uint8_t protectionAbsent; in getAdtsFrameLength() local
110 if (source->readAt(offset + 1, &protectionAbsent, 1) < 1) { in getAdtsFrameLength()
113 protectionAbsent &= 0x1; in getAdtsFrameLength()
123 size_t headSize = protectionAbsent ? kAdtsHeaderLengthNoCrc : kAdtsHeaderLengthWithCrc; in getAdtsFrameLength()
/aosp12/frameworks/wilhelm/src/android/
H A DAacBqToPcmCbRenderer.cpp54 const uint8_t protectionAbsent = data[offset+1] & 0x1; in getAdtsFrameSize() local
63 size_t headSize = protectionAbsent ? kAdtsHeaderLengthNoCrc : kAdtsHeaderLengthWithCrc; in getAdtsFrameSize()
/aosp12/frameworks/wilhelm/src/android/util/
H A DAacAdtsExtractor.cpp73 const uint8_t protectionAbsent = syncword[1] & 0x1; in getFrameSize() local
81 size_t headSize = protectionAbsent ? kAdtsHeaderLengthNoCrc : kAdtsHeaderLengthWithCrc; in getFrameSize()
/aosp12/frameworks/av/media/libstagefright/codecs/aacdec/
H A DSoftAAC2.cpp751 bool protectionAbsent = (adtsHeader[1] & 1); in onQueueFilled() local
766 adtsHeaderSize = (protectionAbsent ? 7 : 9); in onQueueFilled()
/aosp12/frameworks/av/media/codec2/components/aac/
H A DC2SoftAacDec.cpp633 bool protectionAbsent = (adtsHeader[1] & 1); in process() local
648 adtsHeaderSize = (protectionAbsent ? 7 : 9); in process()
/aosp12/frameworks/av/media/libstagefright/codecs/xaacdec/
H A DSoftXAAC.cpp614 bool protectionAbsent = (adtsHeader[1] & 1); in onQueueFilled() local
628 adtsHeaderSize = (protectionAbsent ? 7 : 9); in onQueueFilled()
/aosp12/frameworks/av/media/codec2/components/xaac/
H A DC2SoftXaacDec.cpp472 bool protectionAbsent = (adtsHeader[1] & 1); in process() local
484 adtsHeaderSize = (protectionAbsent ? 7 : 9); in process()