Searched refs:getBitsWithFallback (Results 1 – 4 of 4) sorted by relevance
/frameworks/av/media/libstagefright/ |
D | HevcUtils.cpp | 200 uint8_t maxSubLayersMinus1 = reader.getBitsWithFallback(3, 0); in parseSps() 209 subLayerProfilePresentFlag[i] = reader.getBitsWithFallback(1, 0); in parseSps() 210 subLayerLevelPresentFlag[i] = reader.getBitsWithFallback(1, 0); in parseSps() 237 if (reader.getBitsWithFallback(1, 0) /* i.e. conformance_window_flag */) { in parseSps() 252 bool spsSubLayerOrderingInfoPresentFlag = reader.getBitsWithFallback(1, 0); in parseSps() 266 if (reader.getBitsWithFallback(1, 0)) { // scaling_list_enabled_flag u(1) in parseSps() 268 if (reader.getBitsWithFallback(1, 0)) { // sps_scaling_list_data_present_flag in parseSps() 271 if (!reader.getBitsWithFallback(1, 1)) { in parseSps() 289 if (reader.getBitsWithFallback(1, 0)) { // pcm_enabled_flag in parseSps() 300 if (i != 0 && reader.getBitsWithFallback(1, 0)) { // inter_ref_pic_set_prediction_flag in parseSps() [all …]
|
/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/ |
D | ABitReader.h | 35 uint32_t getBitsWithFallback(size_t n, uint32_t fallback);
|
/frameworks/av/media/libstagefright/foundation/ |
D | ABitReader.cpp | 60 uint32_t ABitReader::getBitsWithFallback(size_t n, uint32_t fallback) { in getBitsWithFallback() function in android::ABitReader
|
D | avc_utils.cpp | 46 while (br->getBitsWithFallback(1, 1) == 0) { in parseUEWithFallback()
|