Searched refs:mBits (Results 1 - 10 of 10) sorted by relevance
/external/aac/libFDK/include/ |
H A D | FDK_crc.h | 177 * 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 D | tpenc_adts.h | 183 * 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 D | tpenc_adts.cpp | 101 int mBits /*!< number of bits in crc region */ 107 return ( FDKcrcStartReg(&pAdts->crcInfo, hBs, mBits) );
|
H A D | tpenc_lib.cpp | 547 int transportEnc_CrcStartReg(HANDLE_TRANSPORTENC hTpEnc, int mBits) argument 553 crcReg = adtsWrite_CrcStartReg(&hTpEnc->writer.adts, &hTpEnc->bitStream, mBits);
|
/external/aac/libMpegTPDec/src/ |
H A D | tpdec_adts.h | 155 * 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 D | tpdec_adts.cpp | 106 int mBits /*!< number of bits in crc region */ 113 return ( FDKcrcStartReg(&pAdts->crcInfo, hBs, mBits) );
|
H A D | tpdec_lib.cpp | 1288 int transportDec_CrcStartReg(HANDLE_TRANSPORTDEC pTp, INT mBits) argument 1292 return adtsRead_CrcStartReg(&pTp->parser.adts, &pTp->bitStream[0], mBits);
|
/external/aac/libMpegTPEnc/include/ |
H A D | tpenc_lib.h | 263 * \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 D | FDK_crc.cpp | 257 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 D | tpdec_lib.h | 491 * \param mBits Size in bits of the data region. Set to 0 if it should not be of a fixed size. 495 const INT mBits );
|
Completed in 93 milliseconds