Home
last modified time | relevance | path

Searched refs:image_count_ (Results 1 – 2 of 2) sorted by relevance

/external/image_io/src/jpeg/
Djpeg_info_builder.cc19 : image_limit_(std::numeric_limits<int>::max()), image_count_(0), in JpegInfoBuilder()
44 image_count_++; in Process()
64 if (image_count_ >= image_limit_) { in Process()
70 if (image_count_ > 0 && IsJfifSegment(segment)) { in Process()
72 JpegSegmentInfo segment_info(image_count_ - 1, data_range, kJfif); in Process()
80 if (image_count_ > 0 && IsMpfSegment(segment)) { in Process()
81 ++image_mpf_count_[image_count_ - 1]; in Process()
83 JpegSegmentInfo segment_info(image_count_ - 1, data_range, kMpf); in Process()
96 if (image_count_ > 1 && HasId(segment, kXmpAppleDepthId)) { in Process()
97 ++image_xmp_apple_depth_count_[image_count_ - 1]; in Process()
[all …]
/external/image_io/includes/image_io/jpeg/
Djpeg_info_builder.h95 int image_count_; variable