Home
last modified time | relevance | path

Searched refs:Read8 (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/heif_impl/heif_parser/box/
H A Ditem_property_hvcc_box.cpp66 config_.version = reader.Read8(); in ParseContent()
67 uint8_t tempByte = reader.Read8(); in ParseContent()
75 config_.generalLevelIdc = reader.Read8(); in ParseContent()
77 config_.parallelismType = reader.Read8() & 0x03; in ParseContent()
78 config_.chromaFormat = reader.Read8() & 0x03; in ParseContent()
81 config_.bitDepthLuma = (reader.Read8() & 0x07) + BIT_DEPTH_DIFF; in ParseContent()
82 config_.bitDepthChroma = (reader.Read8() & 0x07) + BIT_DEPTH_DIFF; in ParseContent()
85 tempByte = reader.Read8(); in ParseContent()
92 int nalArrayNum = reader.Read8(); in ParseContent()
94 tempByte = reader.Read8(); in ParseContent()
H A Ditem_property_transform_box.cpp24 uint8_t rotation = reader.Read8() & 0x03; // only 2 bits is used in ParseContent()
39 uint8_t axis = reader.Read8(); in ParseContent()
H A Ditem_property_basic_box.cpp42 uint8_t channelNum = reader.Read8(); in ParseContent()
48 bitNums_[i] = reader.Read8(); in ParseContent()
H A Ditem_property_aux_box.cpp25 auxSubtypes_.push_back(reader.Read8()); in ParseContent()
H A Ditem_property_box.cpp103 int assocNum = reader.Read8(); in ParseContent()
112 index = reader.Read8(); in ParseContent()
H A Ditem_property_color_box.cpp44 uint8_t fullRangeFlag = (reader.Read8() & 0x80) >> FILL_RANGE_FLAG_SHIFT; in ParseContent()
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/include/heif_impl/heif_parser/
H A Dheif_stream.h66 uint8_t Read8();
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/
H A Dheif_parser_test.cpp77 uint8_t ret1 = heifReader.Read8();
89 ret1 = heifReader.Read8();
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/heif_impl/heif_parser/
H A Dheif_stream.cpp89 uint8_t HeifStreamReader::Read8() in Read8() function in OHOS::ImagePlugin::HeifStreamReader