Home
last modified time | relevance | path

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

/frameworks/av/media/extractors/aac/
DAACExtractor.cpp107 uint8_t protectionAbsent; in getAdtsFrameLength() local
108 if (source->readAt(offset + 1, &protectionAbsent, 1) < 1) { in getAdtsFrameLength()
111 protectionAbsent &= 0x1; in getAdtsFrameLength()
121 size_t headSize = protectionAbsent ? kAdtsHeaderLengthNoCrc : kAdtsHeaderLengthWithCrc; in getAdtsFrameLength()
/frameworks/wilhelm/src/android/
DAacBqToPcmCbRenderer.cpp54 const uint8_t protectionAbsent = data[offset+1] & 0x1; in getAdtsFrameSize() local
63 size_t headSize = protectionAbsent ? kAdtsHeaderLengthNoCrc : kAdtsHeaderLengthWithCrc; in getAdtsFrameSize()
/frameworks/wilhelm/src/android/util/
DAacAdtsExtractor.cpp73 const uint8_t protectionAbsent = syncword[1] & 0x1; in getFrameSize() local
81 size_t headSize = protectionAbsent ? kAdtsHeaderLengthNoCrc : kAdtsHeaderLengthWithCrc; in getFrameSize()
/frameworks/av/media/codec2/components/aac/
DC2SoftAacDec.cpp589 bool protectionAbsent = (adtsHeader[1] & 1); in process() local
604 adtsHeaderSize = (protectionAbsent ? 7 : 9); in process()
/frameworks/av/media/libstagefright/codecs/aacdec/
DSoftAAC2.cpp699 bool protectionAbsent = (adtsHeader[1] & 1); in onQueueFilled() local
714 adtsHeaderSize = (protectionAbsent ? 7 : 9); in onQueueFilled()
/frameworks/av/media/libstagefright/codecs/xaacdec/
DSoftXAAC.cpp614 bool protectionAbsent = (adtsHeader[1] & 1); in onQueueFilled() local
628 adtsHeaderSize = (protectionAbsent ? 7 : 9); in onQueueFilled()
/frameworks/av/media/codec2/components/xaac/
DC2SoftXaacDec.cpp469 bool protectionAbsent = (adtsHeader[1] & 1); in process() local
481 adtsHeaderSize = (protectionAbsent ? 7 : 9); in process()