OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:protectionAbsent
(Results
1 - 5
of
5
) sorted by null
/frameworks/wilhelm/src/android/
AacBqToPcmCbRenderer.cpp
54
const uint8_t
protectionAbsent
= data[offset+1] & 0x1;
60
//
protectionAbsent
is 0 if there is CRC
63
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
636
bool
protectionAbsent
= (adtsHeader[1] & 1);
651
adtsHeaderSize = (
protectionAbsent
? 7 : 9);
[
all
...]
Completed in 5205 milliseconds