Searched refs:mBits (Results 1 - 10 of 10) sorted by relevance

/external/aac/libFDK/include/
H A DFDK_crc.h177 * Bitstream range for crc calculation can be limited or kept dynamic depending on mBits parameter.
182 * \param mBits Number of bits in crc region to be calculated.
183 * - mBits > 0: Zero padding will be used for CRC calculation, if there
184 * are less than mBits bits available.
185 * - mBits < 0: No zero padding is done.
186 * - mBits = 0: The number of bits used in crc calculation is dynamically,
195 const INT mBits
203 * on mBits parameter of FDKcrcStartReg().
/external/aac/libMpegTPEnc/src/
H A Dtpenc_adts.h183 * If mBits is positive zero padding will be used for CRC calculation, if there
184 * are less than mBits bits available.
185 * If mBits is negative no zero padding is done.
186 * If mBits is zero the memory for the buffer is allocated dynamically, the
191 * \param mBits limit of number of bits to be considered for the requested CRC region
198 int mBits
H A Dtpenc_adts.cpp101 int mBits /*!< number of bits in crc region */
107 return ( FDKcrcStartReg(&pAdts->crcInfo, hBs, mBits) );
H A Dtpenc_lib.cpp541 int transportEnc_CrcStartReg(HANDLE_TRANSPORTENC hTpEnc, int mBits) argument
547 crcReg = adtsWrite_CrcStartReg(&hTpEnc->writer.adts, &hTpEnc->bitStream, mBits);
/external/aac/libMpegTPDec/src/
H A Dtpdec_adts.h155 * If mBits is positive zero padding will be used for CRC calculation, if there
156 * are less than mBits bits available.
157 * If mBits is negative no zero padding is done.
158 * If mBits is zero the memory for the buffer is allocated dynamically, the
163 * \param mBits max number of bits in crc region to be considered
170 int mBits
H A Dtpdec_adts.cpp106 int mBits /*!< number of bits in crc region */
113 return ( FDKcrcStartReg(&pAdts->crcInfo, hBs, mBits) );
H A Dtpdec_lib.cpp1163 int transportDec_CrcStartReg(HANDLE_TRANSPORTDEC pTp, INT mBits) argument
1167 return adtsRead_CrcStartReg(&pTp->parser.adts, &pTp->bitStream[0], mBits);
/external/aac/libMpegTPEnc/include/
H A Dtpenc_lib.h263 * \param mBits Size in bits of the data region. Set to 0 if it should not be of a fixed size.
266 int transportEnc_CrcStartReg(HANDLE_TRANSPORTENC hTpEnc, int mBits);
/external/aac/libFDK/src/
H A DFDK_crc.cpp257 const INT mBits
264 hCrcInfo->crcRegData[reg].maxBits = mBits;
395 * Calculate crc. Lenght depends on mBits parameter in FDKcrcStartReg() configuration.
432 int mBits = bits & 0x7; /* modulo bits */ local
442 if(mBits!=0) {
443 rBits -= calcCrc_Bits(&crc, hCrcInfo->crcMask, hCrcInfo->crcPoly, &bsReader, mBits );
/external/aac/libMpegTPDec/include/
H A Dtpdec_lib.h470 * \param mBits Size in bits of the data region. Set to 0 if it should not be of a fixed size.
474 const INT mBits );

Completed in 129 milliseconds