HomeSort by relevance Sort by last modified time
    Searched refs:codeWord (Results 1 - 10 of 10) sorted by null

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
armCOMM_Bitstream.c 211 if (pCodeBook->codeWord == (Value >> (32 - pCodeBook->codeLen)))
246 * [in] codeWord Code word that need to be inserted in to the
265 OMX_U32 codeWord,
280 codeWord = codeWord << (32-codeLength);
282 Value = Value | (codeWord >> (24+Offset));
288 codeWord = codeWord << (8-Offset);
291 Value = codeWord >> 24;
341 return (armPackBits(ppBitStream, pBitOffset, code.codeWord, code.codeLen))
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
armCOMM_Bitstream.c 211 if (pCodeBook->codeWord == (Value >> (32 - pCodeBook->codeLen)))
246 * [in] codeWord Code word that need to be inserted in to the
265 OMX_U32 codeWord,
280 codeWord = codeWord << (32-codeLength);
282 Value = Value | (codeWord >> (24+Offset));
288 codeWord = codeWord << (8-Offset);
291 Value = codeWord >> 24;
341 return (armPackBits(ppBitStream, pBitOffset, code.codeWord, code.codeLen))
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
armCOMM_Bitstream.c 211 if (pCodeBook->codeWord == (Value >> (32 - pCodeBook->codeLen)))
246 * [in] codeWord Code word that need to be inserted in to the
265 OMX_U32 codeWord,
280 codeWord = codeWord << (32-codeLength);
282 Value = Value | (codeWord >> (24+Offset));
288 codeWord = codeWord << (8-Offset);
291 Value = codeWord >> 24;
341 return (armPackBits(ppBitStream, pBitOffset, code.codeWord, code.codeLen))
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
armCOMM_Bitstream.h 39 OMX_U32 codeWord;
163 * [in] codeWord Code word that need to be inserted in to the
182 OMX_U32 codeWord,
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
armCOMM_Bitstream.h 39 OMX_U32 codeWord;
163 * [in] codeWord Code word that need to be inserted in to the
182 OMX_U32 codeWord,
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/api/
armCOMM_Bitstream.h 39 OMX_U32 codeWord;
163 * [in] codeWord Code word that need to be inserted in to the
182 OMX_U32 codeWord,
  /external/aac/libAACenc/src/
bit_cnt.cpp 783 INT codeWord,codeLength;
796 codeWord = FDKaacEnc_huff_ctab1[t0][t1][t2][t3];
798 FDKwriteBits(hBitstream,codeWord,codeLength);
808 codeWord = FDKaacEnc_huff_ctab2[t0][t1][t2][t3];
810 FDKwriteBits(hBitstream,codeWord,codeLength);
855 codeWord = FDKaacEnc_huff_ctab3[t0][t1][t2][t3];
857 FDKwriteBits(hBitstream,codeWord,codeLength);
902 codeWord = FDKaacEnc_huff_ctab4[t0][t1][t2][t3];
904 FDKwriteBits(hBitstream,codeWord,codeLength);
913 codeWord = FDKaacEnc_huff_ctab5[t0][t1]
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
bit_cnt.c 499 UWord16 codeWord, codeLength;
513 codeWord = huff_ctab1[t0+1][t1+1][t2+1][t3+1];
515 WriteBits(hBitstream, codeWord, codeLength);
525 codeWord = huff_ctab2[t0+1][t1+1][t2+1][t3+1];
527 WriteBits(hBitstream,codeWord,codeLength);
579 codeWord = huff_ctab3[t0][t1][t2][t3];
581 WriteBits(hBitstream,codeWord,codeLength);
633 codeWord = huff_ctab4[t0][t1][t2][t3];
635 WriteBits(hBitstream,codeWord,codeLength);
644 codeWord = huff_ctab5[t0+4][t1+4]
    [all...]
  /prebuilts/go/darwin-x86/src/compress/flate/
huffman_bit_writer.go 387 var codeWord int = int(w.codegen[i])
389 if codeWord == badCode {
392 w.writeCode(w.codegenEncoding.codes[uint32(codeWord)])
394 switch codeWord {
  /prebuilts/go/linux-x86/src/compress/flate/
huffman_bit_writer.go 387 var codeWord int = int(w.codegen[i])
389 if codeWord == badCode {
392 w.writeCode(w.codegenEncoding.codes[uint32(codeWord)])
394 switch codeWord {

Completed in 2742 milliseconds