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

  /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/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/protocols/rtp_payload_parser/rfc_3640/src/
rfc3640_payload_parser.cpp 196 size = fragment.ReadBits(sizeLength);
206 index = fragment.ReadBits(indexLength);
210 indexDelta = fragment.ReadBits(indexDeltaLength);
219 CTSFlag = fragment.ReadBits(1);
222 CTSDelta = fragment.ReadBits(CTSDeltaLength);
228 DTSFlag = fragment.ReadBits(1);
231 DTSDelta = fragment.ReadBits(DTSDeltaLength);
237 RAPFlag = fragment.ReadBits(1);
286 auxDataSize = fragment.ReadBits(auxDataSizeLength);
  /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...]
  /external/opencore/codecs_v2/omx/omx_m4v/src/
omx_mpeg4_component.cpp     [all...]
  /external/opencore/codecs_v2/omx/omx_m4v/include/
omx_mpeg4_component.h 86 void ReadBits(OMX_U8* aStream, uint8 aNumBits, uint32* aOutData);
  /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...]
  /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.
bitstreamparser.h 50 OSCL_IMPORT_REF uint32 ReadBits(uint8 numberOfBits);
  /external/opencore/codecs_v2/utilities/m4v_config_parser/include/
m4v_config_parser.h 72 int16 ReadBits(
  /hardware/ti/omap3/omx/ti_omx_config_parser/inc/
ti_m4v_config_parser.h 83 int16 ReadBits(
  /external/opencore/codecs_v2/video/m4v_h263/enc/include/
pvm4vencoder.h 158 int16 ReadBits(mp4StreamType *pStream, uint8 ucNBits, uint32 *pulOutData);
  /external/opencore/protocols/systems/3g-324m_pvterminal/h245/per/include/
genericper.h 98 uint8 ReadBits(uint32 number, PS_InStream stream);

Completed in 836 milliseconds