Home
last modified time | relevance | path

Searched refs:JpegXmpInfo (Results 1 – 11 of 11) sorted by relevance

/external/image_io/src/jpeg/
Djpeg_xmp_info.cc14 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()
Djpeg_info_builder.cc20 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()
Djpeg_image_extractor.cc65 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()
Djpeg_xmp_info_builder.cc16 JpegXmpInfo::GetDataPropertyName(xmp_info_type_); in ProcessSegment()
Djpeg_xmp_data_extractor.cc43 string property_name = JpegXmpInfo::GetDataPropertyName(xmp_info_type_); in Transfer()
/external/image_io/includes/image_io/jpeg/
Djpeg_info.h17 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_;
Djpeg_xmp_info.h27 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;
Djpeg_xmp_info_builder.h17 explicit JpegXmpInfoBuilder(JpegXmpInfo::Type xmp_info_type) in JpegXmpInfoBuilder()
30 JpegXmpInfo::Type xmp_info_type_;
Djpeg_xmp_data_extractor.h20 JpegXmpDataExtractor(JpegXmpInfo::Type xmp_info_type, size_t segment_count, in JpegXmpDataExtractor()
50 JpegXmpInfo::Type xmp_info_type_;
Djpeg_image_extractor.h55 bool ExtractImage(JpegXmpInfo::Type xmp_info_type,
Djpeg_info_builder.h88 JpegXmpInfo::Type xmp_info_type);