Home
last modified time | relevance | path

Searched refs:headerBits (Results 1 – 3 of 3) sorted by relevance

/external/aac/libMpegTPDec/src/
Dtpdec_lib.cpp1054 INT headerBits = 0, headerBitsFirstFrame = 0, headerBitsPrevious; in synchronization() local
1106 headerBitsPrevious = headerBits; in synchronization()
1117 headerBits = 0; in synchronization()
1137 headerBits = syncLength; in synchronization()
1140 headerBits = 0; in synchronization()
1153 &headerBits); in synchronization()
1159 hBs, -headerBits + TPDEC_SYNCSKIP + (bitsAvail % TPDEC_SYNCSKIP)); in synchronization()
1165 bitsAvail -= headerBits; in synchronization()
1171 if ((checkLengthBits + headerBits) > (((8192 * 4) << 3) - 7)) { in synchronization()
1196 bits = (bitsAvail + headerBits) % TPDEC_SYNCSKIP; in synchronization()
[all …]
/external/aac/libMpegTPEnc/src/
Dtpenc_adts.cpp150 hAdts->headerBits = bits; in adtsWrite_GetHeaderBits()
196 hAdts->headerBits = adtsWrite_GetHeaderBits(hAdts); in adtsWrite_EncodeHeader()
198 FDK_ASSERT(((frame_length + hAdts->headerBits) / 8) < 0x2000); /*13 bit*/ in adtsWrite_EncodeHeader()
235 FDKwriteBits(hBitStream, (frame_length + hAdts->headerBits) >> 3, 13); in adtsWrite_EncodeHeader()
Dtpenc_adts.h128 int headerBits; /*!< Header bit demand for the current raw data block */ member