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;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
AACTrackImpl.java 230 int protectionAbsent = brb.readBits(1);
261 int protectionAbsent = brb.readBits(1);
267 if (protectionAbsent == 0) {
  /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/
SoftAAC2.cpp 424 bool protectionAbsent = (adtsHeader[1] & 1);
439 adtsHeaderSize = (protectionAbsent ? 7 : 9);

Completed in 287 milliseconds