Searched refs:getBits (Results 1 - 17 of 17) sorted by relevance

/frameworks/av/media/libstagefright/mpeg2ts/
H A DATSParser.cpp235 unsigned table_id = br->getBits(8);
239 unsigned section_syntax_indicator = br->getBits(1);
243 CHECK_EQ(br->getBits(1), 0u);
244 MY_LOGV(" reserved = %u", br->getBits(2));
246 unsigned section_length = br->getBits(12);
251 MY_LOGV(" program_number = %u", br->getBits(16));
252 MY_LOGV(" reserved = %u", br->getBits(2));
253 MY_LOGV(" version_number = %u", br->getBits(5));
254 MY_LOGV(" current_next_indicator = %u", br->getBits(1));
255 MY_LOGV(" section_number = %u", br->getBits(
[all...]
H A DMPEG2PSExtractor.cpp275 unsigned packet_startcode_prefix = br.getBits(24);
288 unsigned stream_id = br.getBits(8);
291 /* unsigned PES_packet_length = */br.getBits(16);
302 /* unsigned current_next_indicator = */br.getBits(1);
303 /* unsigned reserved = */br.getBits(2);
304 /* unsigned program_stream_map_version = */br.getBits(5);
305 /* unsigned reserved = */br.getBits(7);
306 /* unsigned marker_bit = */br.getBits(1);
307 unsigned program_stream_info_length = br.getBits(16);
315 unsigned descriptor_tag = br.getBits(
[all...]
H A DESQueue.cpp348 CHECK_EQ(bits.getBits(8), 0xa0);
349 unsigned numAUs = bits.getBits(8);
351 unsigned quantization_word_length = bits.getBits(2);
352 unsigned audio_sampling_frequency = bits.getBits(3);
353 unsigned num_channels = bits.getBits(3);
405 CHECK_EQ(bits.getBits(12), 0xfffu);
407 bool protection_absent = bits.getBits(1) != 0;
410 unsigned profile = bits.getBits(2);
412 unsigned sampling_freq_index = bits.getBits(4);
413 bits.getBits(
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DAMPEG4AudioAssembler.cpp100 *audioObjectType = bits->getBits(5);
102 *audioObjectType = 32 + bits->getBits(6);
111 unsigned frameLengthFlag = bits->getBits(1);
112 unsigned dependsOnCoreCoder = bits->getBits(1);
114 /* unsigned coreCoderDelay = */bits->getBits(1);
116 unsigned extensionFlag = bits->getBits(1);
124 /* unsigned layerNr = */bits->getBits(3);
129 /* unsigned numOfSubFrame = */bits->getBits(5);
130 /* unsigned layerLength = */bits->getBits(11);
133 /* unsigned aacSectionDataResilienceFlag = */bits->getBits(
[all...]
H A DAMPEG4ElementaryAssembler.cpp267 unsigned AU_size = bits.getBits(mSizeLength);
273 unsigned AU_index = bits.getBits(n);
287 if (bits.getBits(1)) {
301 if (bits.getBits(1)) {
336 unsigned auxSize = bits.getBits(mAuxiliaryDataSizeLength);
/frameworks/av/media/libstagefright/
H A Davc_utils.cpp33 while (br->getBits(1) == 0) {
37 unsigned x = br->getBits(numZeroes);
47 unsigned profile_idc = br.getBits(8);
63 CHECK_EQ(br.getBits(1), 0u); // seq_scaling_matrix_present_flag
76 br.getBits(1); // delta_pic_order_always_zero_flag
87 br.getBits(1); // gaps_in_frame_num_value_allowed_flag
91 unsigned frame_mbs_only_flag = br.getBits(1);
99 br.getBits(1); // mb_adaptive_frame_field_flag
102 br.getBits(1); // direct_8x8_inference_flag
104 if (br.getBits(
[all...]
H A DMPEG4Extractor.cpp1841 uint32_t objectType = br.getBits(5);
1844 objectType = 32 + br.getBits(6);
1847 uint32_t freqIndex = br.getBits(4);
1855 sampleRate = br.getBits(24);
1856 numChannels = br.getBits(4);
1868 numChannels = br.getBits(4);
/frameworks/av/media/libstagefright/foundation/
H A DABitReader.cpp46 uint32_t ABitReader::getBits(size_t n) { function in class:android::ABitReader
72 getBits(32);
77 getBits(n);
/frameworks/av/include/media/stagefright/foundation/
H A DABitReader.h31 uint32_t getBits(size_t n);
/frameworks/rs/
H A DrsComponent.h44 uint32_t getBits() const {return mBits;} function in class:android::renderscript::Component
H A DrsElement.h104 uint32_t getBits() const {return mBits;} function in class:android::renderscript::Element
H A DrsElement.cpp172 mBits = mComponent.getBits();
/frameworks/support/renderscript/v8/rs_support/
H A DrsComponent.h44 uint32_t getBits() const {return mBits;} function in class:android::renderscript::Component
H A DrsElement.h104 uint32_t getBits() const {return mBits;} function in class:android::renderscript::Element
H A DrsElement.cpp172 mBits = mComponent.getBits();
/frameworks/av/media/libstagefright/wifi-display/source/
H A DPlaybackSession.cpp840 CHECK_EQ(br.getBits(13), 0);
841 CHECK_EQ(br.getBits(2), (trackIndex >> 30) & 3);
842 CHECK_EQ(br.getBits(1), 1u);
843 CHECK_EQ(br.getBits(15), (trackIndex >> 15) & 0x7fff);
844 CHECK_EQ(br.getBits(1), 1u);
845 CHECK_EQ(br.getBits(15), trackIndex & 0x7fff);
846 CHECK_EQ(br.getBits(1), 1u);
847 CHECK_EQ(br.getBits(11), 0);
848 CHECK_EQ(br.getBits(4), (inputCTR >> 60) & 0xf);
849 CHECK_EQ(br.getBits(
[all...]
/frameworks/av/libvideoeditor/vss/mcs/src/
H A DM4MCS_API.c1241 (M4OSA_UInt8)getBits(p_vlc_engine->p_bs, length);

Completed in 443 milliseconds