Searched defs:bitCount (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dbit_cnt.c38 * output: bitCount for tables 1-11
44 Word16 *bitCount)
94 bitCount[1]=extract_h(bc1_2);
95 bitCount[2]=extract_l(bc1_2);
96 bitCount[3]=extract_h(bc3_4) + sc;
97 bitCount[4]=extract_l(bc3_4) + sc;
98 bitCount[5]=extract_h(bc5_6);
99 bitCount[6]=extract_l(bc5_6);
100 bitCount[7]=extract_h(bc7_8) + sc;
101 bitCount[
42 count1_2_3_4_5_6_7_8_9_10_11(const Word16 *values, const Word16 width, Word16 *bitCount) argument
118 count3_4_5_6_7_8_9_10_11(const Word16 *values, const Word16 width, Word16 *bitCount) argument
192 count5_6_7_8_9_10_11(const Word16 *values, const Word16 width, Word16 *bitCount) argument
249 count7_8_9_10_11(const Word16 *values, const Word16 width, Word16 *bitCount) argument
297 count9_10_11(const Word16 *values, const Word16 width, Word16 *bitCount) argument
345 count11(const Word16 *values, const Word16 width, Word16 *bitCount) argument
386 countEsc(const Word16 *values, const Word16 width, Word16 *bitCount) argument
469 bitCount(const Word16 *values, const Word16 width, Word16 maxVal, Word16 *bitCount) argument
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dbitstream_io.cpp574 /* Int byteCount, Int bitCount) */
581 PV_STATUS BitstreamRepos(BitstreamEncVideo *bitstream, Int byteCount, Int bitCount) argument
591 if (bitCount)
593 bitstream->bitLeft = (WORD_SIZE << 3) - bitCount; /* bitCount should be 0-31 */
727 //bitstream1->bitCount += bitstream2->bitCount;
H A Dcombined_encode.cpp285 Int byteCount = 0, byteCount1 = 0, bitCount = 0; local
367 bitCount = BitstreamGetPos(bs1);
368 byteCount1 = byteCount = bitCount >> 3; /* save the position before GOB header */
369 bitCount = bitCount & 0x7;
437 bitCount = BitstreamGetPos(bs1);
438 byteCount = bitCount >> 3; /* save the state before encoding */
439 bitCount = bitCount & 0x7;
469 BitstreamRepos(bs1, byteCount, bitCount); /* rewin
[all...]

Completed in 3731 milliseconds