Home
last modified time | relevance | path

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

/frameworks/av/media/libstagefright/
DHevcUtils.cpp194 uint8_t maxSubLayersMinus1 = reader.getBitsWithFallback(3, 0); in parseSps()
203 subLayerProfilePresentFlag[i] = reader.getBitsWithFallback(1, 0); in parseSps()
204 subLayerLevelPresentFlag[i] = reader.getBitsWithFallback(1, 0); in parseSps()
231 if (reader.getBitsWithFallback(1, 0) /* i.e. conformance_window_flag */) { in parseSps()
246 bool spsSubLayerOrderingInfoPresentFlag = reader.getBitsWithFallback(1, 0); in parseSps()
260 if (reader.getBitsWithFallback(1, 0)) { // scaling_list_enabled_flag u(1) in parseSps()
262 if (reader.getBitsWithFallback(1, 0)) { // sps_scaling_list_data_present_flag in parseSps()
265 if (!reader.getBitsWithFallback(1, 1)) { in parseSps()
283 if (reader.getBitsWithFallback(1, 0)) { // pcm_enabled_flag in parseSps()
294 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/
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
Davc_utils.cpp46 while (br->getBitsWithFallback(1, 1) == 0) { in parseUEWithFallback()