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

/frameworks/av/media/libstagefright/rtsp/
H A DAMPEG4AudioAssembler.cpp100 *audioObjectType = bits->getBits(5);
102 *audioObjectType = 32 + bits->getBits(6);
111 unsigned frameLengthFlag __unused = 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.cpp271 unsigned AU_size = bits.getBits(mSizeLength);
277 unsigned AU_index = bits.getBits(n);
291 if (bits.getBits(1)) {
305 if (bits.getBits(1)) {
340 unsigned auxSize = bits.getBits(mAuxiliaryDataSizeLength);
/frameworks/av/media/libstagefright/mpeg2ts/
H A DMPEG2PSExtractor.cpp281 unsigned packet_startcode_prefix = br.getBits(24);
297 unsigned stream_id = br.getBits(8);
300 /* unsigned PES_packet_length = */br.getBits(16);
311 /* unsigned current_next_indicator = */br.getBits(1);
312 /* unsigned reserved = */br.getBits(2);
313 /* unsigned program_stream_map_version = */br.getBits(5);
314 /* unsigned reserved = */br.getBits(7);
315 /* unsigned marker_bit = */br.getBits(1);
316 unsigned program_stream_info_length = br.getBits(16);
324 unsigned descriptor_tag = br.getBits(
[all...]
H A DATSParser.cpp354 unsigned table_id = br->getBits(8);
360 unsigned section_syntax_indicator = br->getBits(1);
368 MY_LOGV(" reserved = %u", br->getBits(2));
370 unsigned section_length = br->getBits(12);
373 MY_LOGV(" program_number = %u", br->getBits(16));
374 MY_LOGV(" reserved = %u", br->getBits(2));
375 MY_LOGV(" version_number = %u", br->getBits(5));
376 MY_LOGV(" current_next_indicator = %u", br->getBits(1));
377 MY_LOGV(" section_number = %u", br->getBits(8));
378 MY_LOGV(" last_section_number = %u", br->getBits(
[all...]
H A DESQueue.cpp96 if (bits.getBits(16) != 0x0B77) {
106 unsigned fscod = bits.getBits(2);
112 unsigned frmsizecod = bits.getBits(6);
118 unsigned bsid = bits.getBits(5);
124 unsigned bsmod __unused = bits.getBits(3);
125 unsigned acmod = bits.getBits(3);
134 cmixlev = bits.getBits(2);
140 surmixlev = bits.getBits(2);
146 dsurmod = bits.getBits(2);
152 unsigned lfeon = bits.getBits(
[all...]
/frameworks/av/media/libstagefright/
H A Davc_utils.cpp35 while (br->getBits(1) == 0) {
39 unsigned x = br->getBits(numZeroes);
70 unsigned profile_idc = br.getBits(8);
87 if (br.getBits(1)) { // seq_scaling_matrix_present_flag
89 if (br.getBits(1)) { // seq_scaling_list_present_flag[i]
116 br.getBits(1); // delta_pic_order_always_zero_flag
127 br.getBits(1); // gaps_in_frame_num_value_allowed_flag
131 unsigned frame_mbs_only_flag = br.getBits(1);
139 br.getBits(1); // mb_adaptive_frame_field_flag
142 br.getBits(
[all...]
H A DMPEG4Extractor.cpp3006 uint32_t objectType = br.getBits(5);
3009 objectType = 32 + br.getBits(6);
3018 uint32_t freqIndex = br.getBits(4);
3024 sampleRate = br.getBits(24);
3025 numChannels = br.getBits(4);
3028 numChannels = br.getBits(4);
3039 uint32_t extFreqIndex = br.getBits(4);
3046 extSampleRate = br.getBits(24);
3083 objectType = br.getBits(5);
3087 objectType = 32 + br.getBits(
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerCCDecoder.cpp229 last_byte = br.getBits(8);
234 last_byte = br.getBits(8);
245 uint8_t itu_t_t35_country_code = br.getBits(8);
246 uint16_t itu_t_t35_provider_code = br.getBits(16);
247 uint32_t user_identifier = br.getBits(32);
248 uint8_t user_data_type_code = br.getBits(8);
262 bool process_cc_data_flag = br.getBits(1);
264 size_t cc_count = br.getBits(5);
275 uint8_t marker = br.getBits(5);
278 bool cc_valid = br.getBits(
[all...]
/frameworks/av/media/libstagefright/foundation/
H A DABitReader.cpp49 uint32_t ABitReader::getBits(size_t n) { function in class:android::ABitReader
75 getBits(32);
80 getBits(n);
/frameworks/av/include/media/stagefright/foundation/
H A DABitReader.h33 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.h94 uint32_t getBits() const {return mBits;} function in class:android::renderscript::Element
H A DrsElement.cpp178 mBits = mComponent.getBits();
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/
H A DGEOLocationElement.java208 value = (value << width) | getBits(mOctets[octet], sbit, width);
217 private static int getBits(byte b, int b0, int width) { method in class:GEOLocationElement.ReverseBitStream
/frameworks/av/media/libstagefright/httplive/
H A DPlaylistFetcher.cpp1950 CHECK_EQ(bits.getBits(12), 0xfffu);
1952 bool protection_absent __unused = bits.getBits(1) != 0;
1954 unsigned profile = bits.getBits(2);
1956 unsigned sampling_freq_index = bits.getBits(4);
1957 bits.getBits(1); // private_bit
1958 unsigned channel_configuration = bits.getBits(3);

Completed in 353 milliseconds