Home
last modified time | relevance | path

Searched refs:heif_error_eof (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 Dheif_box.cpp44 return heif_error_eof; in ParseHeader()
54 return heif_error_eof; in ParseHeader()
62 return heif_error_eof; in ParseHeader()
229 return heif_error_eof; in MakeFromReader()
H A Ditem_property_color_box.cpp30 return heif_error_eof; in ParseContent()
38 return heif_error_eof; in ParseContent()
H A Ditem_data_box.cpp301 return heif_error_eof; in ReadToExtentData()
305 return heif_error_eof; in ReadToExtentData()
310 return heif_error_eof; in ReadToExtentData()
392 return heif_error_eof; in ReadData()
394 return heif_error_eof; in ReadData()
H A Ditem_property_basic_box.cpp44 return heif_error_eof; in ParseContent()
H A Ditem_property_hvcc_box.cpp57 return heif_error_eof; in ParseNalUnitArray()
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/include/heif_impl/heif_parser/
H A Dheif_error.h23 heif_error_eof = 1, enumerator
H A Dheif_stream.h101 return hasError_ ? heif_error_eof : heif_error_ok; in GetError()
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/
H A Dheif_parser_box_test.cpp402 ASSERT_EQ(heifIlocBox.ReadToExtentData(item, stream, idatBox), heif_error_eof);
434 ASSERT_EQ(heifIdatBox.ReadData(stream, 16, 0, outData), heif_error_eof);
435 ASSERT_EQ(heifIdatBox.ReadData(stream, 0, 16, outData), heif_error_eof);
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/heif_impl/heif_parser/
H A Dheif_parser.cpp103 if (reader.IsAtEnd() || error == heif_error_eof) { in AssembleBoxes()