Searched refs:JpegXmpInfo (Results 1 – 11 of 11) sorted by relevance
/external/image_io/src/jpeg/ |
D | jpeg_xmp_info.cc | 14 void JpegXmpInfo::InitializeVector(vector<JpegXmpInfo>* xmp_info_vector) { in InitializeVector() 16 xmp_info_vector->push_back(JpegXmpInfo(JpegXmpInfo::kGDepthInfoType)); in InitializeVector() 17 xmp_info_vector->push_back(JpegXmpInfo(JpegXmpInfo::kGImageInfoType)); in InitializeVector() 20 string JpegXmpInfo::GetIdentifier(Type jpeg_xmp_info_type) { in GetIdentifier() 29 string JpegXmpInfo::GetDataPropertyName(Type jpeg_xmp_info_type) { in GetDataPropertyName() 38 string JpegXmpInfo::GetMimePropertyName(Type jpeg_xmp_info_type) { in GetMimePropertyName()
|
D | jpeg_info_builder.cc | 20 gdepth_info_builder_(JpegXmpInfo::kGDepthInfoType), in JpegInfoBuilder() 21 gimage_info_builder_(JpegXmpInfo::kGImageInfoType) {} in JpegInfoBuilder() 105 SetXmpMimeType(segment, JpegXmpInfo::kGDepthInfoType); in Process() 106 SetXmpMimeType(segment, JpegXmpInfo::kGImageInfoType); in Process() 126 JpegXmpInfo::kGDepthInfoType, in Finish() 129 JpegXmpInfo::kGImageInfoType, in Finish() 224 JpegXmpInfo::Type xmp_info_type) { in SetXmpMimeType() 225 string property_name = JpegXmpInfo::GetMimePropertyName(xmp_info_type); in SetXmpMimeType()
|
D | jpeg_image_extractor.cc | 65 return ExtractImage(JpegXmpInfo::kGDepthInfoType, image_destination); in ExtractGDepthImage() 70 return ExtractImage(JpegXmpInfo::kGImageInfoType, image_destination); in ExtractGImageImage() 73 bool JpegImageExtractor::ExtractImage(JpegXmpInfo::Type xmp_info_type, in ExtractImage()
|
D | jpeg_xmp_info_builder.cc | 16 JpegXmpInfo::GetDataPropertyName(xmp_info_type_); in ProcessSegment()
|
D | jpeg_xmp_data_extractor.cc | 43 string property_name = JpegXmpInfo::GetDataPropertyName(xmp_info_type_); in Transfer()
|
/external/image_io/includes/image_io/jpeg/ |
D | jpeg_info.h | 17 JpegInfo() { JpegXmpInfo::InitializeVector(&xmp_info_vector_); } in JpegInfo() 51 return HasImage(JpegXmpInfo::kGDepthInfoType); in HasGDepth() 56 return HasImage(JpegXmpInfo::kGImageInfoType); in HasGImage() 69 bool HasImage(JpegXmpInfo::Type xmp_info_type) const { in HasImage() 85 std::string GetMimeType(JpegXmpInfo::Type type) const { in GetMimeType() 92 JpegXmpInfo::Type type) const { in GetSegmentDataRanges() 120 void SetMimeType(JpegXmpInfo::Type type, const std::string& mime_type) { in SetMimeType() 126 void SetSegmentDataRanges(JpegXmpInfo::Type type, in SetSegmentDataRanges() 147 std::vector<JpegXmpInfo> xmp_info_vector_;
|
D | jpeg_xmp_info.h | 27 class JpegXmpInfo { 40 static void InitializeVector(std::vector<JpegXmpInfo>* xmp_info_vector); 55 explicit JpegXmpInfo(Type type) : type_(type) {} in JpegXmpInfo() function 56 JpegXmpInfo(const JpegXmpInfo&) = default; 57 JpegXmpInfo& operator=(const JpegXmpInfo&) = default;
|
D | jpeg_xmp_info_builder.h | 17 explicit JpegXmpInfoBuilder(JpegXmpInfo::Type xmp_info_type) in JpegXmpInfoBuilder() 30 JpegXmpInfo::Type xmp_info_type_;
|
D | jpeg_xmp_data_extractor.h | 20 JpegXmpDataExtractor(JpegXmpInfo::Type xmp_info_type, size_t segment_count, in JpegXmpDataExtractor() 50 JpegXmpInfo::Type xmp_info_type_;
|
D | jpeg_image_extractor.h | 55 bool ExtractImage(JpegXmpInfo::Type xmp_info_type,
|
D | jpeg_info_builder.h | 88 JpegXmpInfo::Type xmp_info_type);
|