Home
last modified time | relevance | path

Searched refs:Read32 (Results 1 – 13 of 13) sorted by relevance

/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/heif_impl/heif_parser/box/
H A Dbasic_box.cpp22 majorBrand_ = reader.Read32(); in ParseContent()
23 minorVersion_ = reader.Read32(); in ParseContent()
29 compatibleBrands_.push_back(reader.Read32()); in ParseContent()
61 isPreDefined_ = reader.Read32(); in ParseContent()
62 handlerType_ = reader.Read32(); in ParseContent()
64 reserved_[i] = reader.Read32(); in ParseContent()
H A Ditem_property_basic_box.cpp23 width_ = reader.Read32(); in ParseContent()
24 height_ = reader.Read32(); in ParseContent()
69 horizontalOffset_ = reader.Read32(); in ParseContent()
70 verticalOffset_ = reader.Read32(); in ParseContent()
H A Ditem_info_box.cpp28 uint32_t entryCount = (boxVersion == HEIF_BOX_VERSION_ZERO) ? reader.Read16() : reader.Read32(); in ParseContentChildren()
63 itemId_ = boxVersion == HEIF_BOX_VERSION_TWO ? reader.Read16() : reader.Read32(); in ParseContent()
65 uint32_t itemType = reader.Read32(); in ParseContent()
145 itemId_ = boxVersion == HEIF_BOX_VERSION_ZERO ? reader.Read16() : reader.Read32(); in ParseContent()
H A Ditem_data_box.cpp36 item.extents[extentIndex].index = reader.Read32(); in ParseExtents()
45 item.extents[extentIndex].offset = reader.Read32(); in ParseExtents()
53 item.extents[extentIndex].length = reader.Read32(); in ParseExtents()
71 uint32_t itemCount = GetVersion() < HEIF_BOX_VERSION_TWO ? reader.Read16() : reader.Read32(); in ParseContent()
77 item.itemId = GetVersion() < HEIF_BOX_VERSION_TWO ? reader.Read16() : reader.Read32(); in ParseContent()
88 item.baseOffset = reader.Read32(); in ParseContent()
H A Ditem_property_display_box.cpp37 colourVolume_.luminanceMax = reader.Read32(); in ParseContent()
38 colourVolume_.luminanceMin = reader.Read32(); in ParseContent()
H A Dheif_box.cpp47 boxSize_ = reader.Read32(); in ParseHeader()
48 boxType_ = reader.Read32(); in ParseHeader()
167 uint32_t data = reader.Read32(); in ParseFullHeader()
H A Ditem_ref_box.cpp34 ref.fromItemId = reader.Read32(); in ParseItemRef()
37 ref.toItemIds.push_back(reader.Read32()); in ParseItemRef()
H A Ditem_property_box.cpp94 uint32_t entryNum = reader.Read32(); in ParseContent()
100 entry.itemId = reader.Read32(); in ParseContent()
H A Ditem_property_color_box.cpp26 uint32_t colorType = reader.Read32(); in ParseContent()
H A Ditem_property_hvcc_box.cpp71 config_.generalProfileCompatibilityFlags = reader.Read32(); in ParseContent()
72 uint32_t indicatorFlagsPre = reader.Read32(); in ParseContent()
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/include/heif_impl/heif_parser/
H A Dheif_stream.h70 uint32_t Read32();
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/
H A Dheif_parser_test.cpp81 uint32_t ret3 = heifReader.Read32();
95 ret3 = heifReader.Read32();
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/heif_impl/heif_parser/
H A Dheif_stream.cpp119 uint32_t HeifStreamReader::Read32() in Read32() function in OHOS::ImagePlugin::HeifStreamReader