Home
last modified time | relevance | path

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

/aosp12/frameworks/av/media/libstagefright/
H A DHevcUtils.cpp200 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()
266 if (reader.getBitsWithFallback(1, 0)) { // scaling_list_enabled_flag u(1) in parseSps()
271 if (!reader.getBitsWithFallback(1, 1)) { in parseSps()
289 if (reader.getBitsWithFallback(1, 0)) { // pcm_enabled_flag in parseSps()
342 if (reader.getBitsWithFallback(1, 0)) { // vui_parameters_present_flag in parseSps()
344 uint32_t aspectRatioIdc = reader.getBitsWithFallback(8, 0); in parseSps()
390 uint8_t maxSubLayersMinus1 = reader.getBitsWithFallback(3, 0); in FindHEVCDimensions()
[all …]
/aosp12/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
H A DABitReader.h35 uint32_t getBitsWithFallback(size_t n, uint32_t fallback);
/aosp12/frameworks/av/media/libstagefright/foundation/
H A DABitReader.cpp60 uint32_t ABitReader::getBitsWithFallback(size_t n, uint32_t fallback) { in getBitsWithFallback() function in android::ABitReader
H A Davc_utils.cpp46 while (br->getBitsWithFallback(1, 1) == 0) { in parseUEWithFallback()