HomeSort by relevance Sort by last modified time
    Searched defs:ReadBits (Results 1 - 6 of 6) sorted by null

  /external/opencore/baselibs/gen_data_structures/src/
bitstreamparser.cpp 54 OSCL_EXPORT_REF uint32 BitStreamParser::ReadBits(uint8 numberOfBits)
127 //If bitpos is not on a byte boundary, have to use ReadBits...
128 if (bitpos != MOST_SIG_BIT) return ReadBits(BITS_PER_UINT8);
179 byte |= (input.ReadBits(1) << bitpos); //Write the bit.
  /external/opencore/codecs_v2/omx/omx_m4v/src/
omx_mpeg4_component.cpp     [all...]
  /external/opencore/codecs_v2/utilities/m4v_config_parser/src/
m4v_config_parser.cpp 113 status = ReadBits(psBits, VOL_START_CODE_LENGTH, &codeword);
157 ReadBits(psBits, 32, &codeword); // skip 32 bits of the Start code
159 ReadBits(psBits, 8, &codeword);
172 ReadBits(psBits, 32, &codeword);
181 ReadBits(psBits, 1, &codeword);
186 ReadBits(psBits, 4, &codeword);
188 ReadBits(psBits, 3, &codeword);
191 ReadBits(psBits, 4, &codeword);
195 ReadBits(psBits, 1, &codeword);
199 ReadBits(psBits, 3, &codeword)
    [all...]
  /external/opencore/codecs_v2/video/m4v_h263/enc/src/
pvm4vencoder.cpp 275 ReadBits(psBits, 8, &codeword); /* profile_and_level_indication */
322 ReadBits(psBits, 32, &codeword);
326 ReadBits(psBits, 1, &codeword);
330 ReadBits(psBits, 4, &codeword);
334 ReadBits(psBits, 1, &codeword);
352 ReadBits(psBits, 32, &codeword);
371 ReadBits(psBits, 28, &codeword);
374 ReadBits(psBits, 4, & codeword);
377 ReadBits(psBits, 1, &codeword);
380 ReadBits(psBits, 8, &codeword)
    [all...]
  /hardware/ti/omap3/omx/ti_omx_config_parser/src/
ti_m4v_config_parser.cpp 140 ReadBits(psBits, 32, &codeword); // skip 32 bits of the Start code
142 ReadBits(psBits, 8, &codeword);
155 ReadBits(psBits, 32, &codeword);
159 ReadBits(psBits, 1, &codeword);
164 ReadBits(psBits, 4, &codeword);
166 ReadBits(psBits, 3, &codeword);
169 ReadBits(psBits, 4, &codeword);
173 ReadBits(psBits, 1, &codeword);
177 ReadBits(psBits, 3, &codeword);
179 ReadBits(psBits, 1, &codeword)
    [all...]
  /external/opencore/protocols/systems/3g-324m_pvterminal/h245/per/src/
genericper.cpp 93 // ReadBits()
98 uint8 ReadBits(uint32 number, PS_InStream stream)
105 ErrorMessageAndLeave("ReadBits(): Max number (8) exceeded");
211 return(ReadBits(1, stream));
236 nbytes = (uint8)(ReadBits(2, stream) + 1);
252 value = ReadBits(nbits, stream);
263 else nbytes = (uint8)(ReadBits(2, stream) + 1);
311 value = ReadBits(nbits, stream);
322 else nbytes = (uint8)(ReadBits(2, stream) + 1);
371 extension_bit = ReadBits(1, stream)
    [all...]

Completed in 853 milliseconds