Home
last modified time | relevance | path

Searched refs:getBitsWithFallback (Results 1 – 4 of 4) sorted by relevance

/frameworks/av/media/libstagefright/
DHevcUtils.cpp176 uint8_t maxSubLayersMinus1 = reader.getBitsWithFallback(3, 0); in parseSps()
185 subLayerProfilePresentFlag[i] = reader.getBitsWithFallback(1, 0); in parseSps()
186 subLayerLevelPresentFlag[i] = reader.getBitsWithFallback(1, 0); in parseSps()
213 if (reader.getBitsWithFallback(1, 0) /* i.e. conformance_window_flag */) { in parseSps()
228 bool spsSubLayerOrderingInfoPresentFlag = reader.getBitsWithFallback(1, 0); in parseSps()
242 if (reader.getBitsWithFallback(1, 0)) { // scaling_list_enabled_flag u(1) in parseSps()
244 if (reader.getBitsWithFallback(1, 0)) { // sps_scaling_list_data_present_flag in parseSps()
247 if (!reader.getBitsWithFallback(1, 1)) { in parseSps()
265 if (reader.getBitsWithFallback(1, 0)) { // pcm_enabled_flag in parseSps()
276 if (i != 0 && reader.getBitsWithFallback(1, 0)) { // inter_ref_pic_set_prediction_flag in parseSps()
[all …]
Davc_utils.cpp46 while (br->getBitsWithFallback(1, 1) == 0) { in parseUEWithFallback()
/frameworks/av/include/media/stagefright/foundation/
DABitReader.h35 uint32_t getBitsWithFallback(size_t n, uint32_t fallback);
/frameworks/av/media/libstagefright/foundation/
DABitReader.cpp60 uint32_t ABitReader::getBitsWithFallback(size_t n, uint32_t fallback) { in getBitsWithFallback() function in android::ABitReader