Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(443)

Unified Diff: third_party/WebKit/Source/platform/testing/ImageDecodeBench.cpp

Issue 2880953002: Measure frame decodes more accurately from ImageDecodeBench
Patch Set: Print error message and return error code when failure occurs Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/testing/ImageDecodeBench.cpp
diff --git a/third_party/WebKit/Source/platform/testing/ImageDecodeBench.cpp b/third_party/WebKit/Source/platform/testing/ImageDecodeBench.cpp
index 11742a16be9d362831a00d0c6d9890075da9d734..0a1c00bcb26e40deb9bb76c1f54e174578b391e3 100644
--- a/third_party/WebKit/Source/platform/testing/ImageDecodeBench.cpp
+++ b/third_party/WebKit/Source/platform/testing/ImageDecodeBench.cpp
@@ -10,6 +10,12 @@
// % ninja -C out/Release image_decode_bench &&
// ./out/Release/image_decode_bench file [iterations]
//
+// The output is formatted for use in a csv file (comma-separated variable).
+// Each row represents successive frames in an animated image.
+// Each column represents a successive iteration of decoding the whole animated
+// image.
+// This means non-animated images will show up as one column.
+//
// TODO(noel): Consider adding md5 checksum support to WTF. Use it to compute
// the decoded image frame md5 and output that value.
//
@@ -18,6 +24,7 @@
// to http://crbug.com/398235#c103 and http://crbug.com/258324#c5
#include <memory>
+#include <vector>
#include "base/command_line.h"
#include "platform/SharedBuffer.h"
#include "platform/image-decoders/ImageDecoder.h"
@@ -204,26 +211,66 @@ PassRefPtr<SharedBuffer> ReadFile(const char* file_name) {
return SharedBuffer::Create(buffer.get(), file_size);
}
-bool DecodeImageData(SharedBuffer* data,
- bool color_correction,
- size_t packet_size) {
- std::unique_ptr<ImageDecoder> decoder = ImageDecoder::Create(
- data, true, ImageDecoder::kAlphaPremultiplied,
- color_correction ? ColorBehavior::TransformToTargetForTesting()
- : ColorBehavior::Ignore());
- if (!packet_size) {
- bool all_data_received = true;
- decoder->SetData(data, all_data_received);
-
- int frame_count = decoder->FrameCount();
- for (int i = 0; i < frame_count; ++i) {
- if (!decoder->FrameBufferAtIndex(i))
- return false;
+// This vector represents a single iteration of one (possibly animated) image.
+// Each entry is a single timing of a single frame.
+using FrameTimings = std::vector<double>;
+using IterationsOfFrameTimings = std::vector<FrameTimings>;
+
+void Print2DResults(const IterationsOfFrameTimings& timings) {
+ for (const FrameTimings& iteration : timings) {
+ for (double frame_time : iteration) {
+ printf("%f,", frame_time);
}
+ printf("\n");
+ }
+ printf("\n");
+}
+
+void TimeDecode(ImageDecoder* decoder,
+ PassRefPtr<SharedBuffer> data,
+ size_t iterations) {
+ bool all_data_received = true;
+ decoder->SetData(data.Get(), all_data_received);
- return !decoder->Failed();
+ size_t frame_count = decoder->FrameCount();
+
+ IterationsOfFrameTimings timings(iterations, FrameTimings(frame_count, 0.0));
+
+ for (size_t i = 0; i < iterations; ++i) {
+ for (size_t frame_index = 0; frame_index < frame_count; ++frame_index) {
+ double start_time = GetCurrentTime();
+ ImageFrame* frame = decoder->FrameBufferAtIndex(frame_index);
+ double elapsed_time = GetCurrentTime() - start_time;
+ if (frame->GetStatus() != ImageFrame::kFrameComplete) {
+ fprintf(stderr, "Image decode failed\n");
+ exit(3);
+ }
+ timings[i][frame_index] = elapsed_time;
+ }
}
+ Print2DResults(timings);
+}
+
+// This function mimics deferred decoding in Chromium when not all data has been
+// received yet.
+void TimePacketedDecode(ImageDecoder* decoder,
+ PassRefPtr<SharedBuffer> data,
+ size_t packet_size,
+ size_t iterations) {
+ // Find total frame count.
+ // Doing this requires a decoder with full data (no packet size).
+ std::unique_ptr<ImageDecoder> frame_count_decoder =
+ ImageDecoder::Create(data.Get(), true, ImageDecoder::kAlphaPremultiplied,
+ ColorBehavior::Ignore());
+
+ constexpr bool total_all_data_received = true;
+ frame_count_decoder->SetData(data.Get(), total_all_data_received);
+ size_t total_frame_count = frame_count_decoder->FrameCount();
+
+ IterationsOfFrameTimings timings(iterations,
+ FrameTimings(total_frame_count, 0.0));
+
RefPtr<SharedBuffer> packet_data = SharedBuffer::Create();
size_t position = 0;
size_t next_frame_to_decode = 0;
@@ -236,20 +283,31 @@ bool DecodeImageData(SharedBuffer* data,
position += length;
bool all_data_received = position == data->size();
- decoder->SetData(packet_data.Get(), all_data_received);
size_t frame_count = decoder->FrameCount();
- for (; next_frame_to_decode < frame_count; ++next_frame_to_decode) {
- ImageFrame* frame = decoder->FrameBufferAtIndex(next_frame_to_decode);
- if (frame->GetStatus() != ImageFrame::kFrameComplete)
- break;
+ for (size_t i = 0; i < iterations; ++i) {
+ for (; next_frame_to_decode < frame_count; ++next_frame_to_decode) {
+ decoder->SetData(packet_data.Get(), all_data_received);
+ double start_time = GetCurrentTime();
+ ImageFrame* frame = decoder->FrameBufferAtIndex(next_frame_to_decode);
+ double elapsed_time = GetCurrentTime() - start_time;
+ if (frame->GetStatus() != ImageFrame::kFrameComplete) {
+ fprintf(stderr, "Image decode failed\n");
+ exit(3);
scroggo_chromium 2017/05/23 15:42:23 Please pass different values to "exit" so it can e
scroggo_chromium 2017/05/23 15:46:02 My mistake, it looks like exit is already not usin
+ }
+ timings[i][next_frame_to_decode] = elapsed_time;
+ decoder->SetData(PassRefPtr<SegmentReader>(nullptr), false);
+ decoder->ClearCacheExceptFrame(next_frame_to_decode);
+ }
}
- if (all_data_received || decoder->Failed())
- break;
+ if (all_data_received || decoder->Failed()) {
+ fprintf(stderr, "Image decode failed\n");
+ exit(3);
+ }
}
- return !decoder->Failed();
+ Print2DResults(timings);
}
} // namespace
@@ -260,9 +318,10 @@ int Main(int argc, char* argv[]) {
// If the platform supports color correction, allow it to be controlled.
bool apply_color_correction = false;
-
if (argc >= 2 && strcmp(argv[1], "--color-correct") == 0) {
- apply_color_correction = (--argc, ++argv, true);
+ --argc;
+ ++argv;
+ apply_color_correction = true;
gfx::ICCProfile profile = gfx::ICCProfileForTestingColorSpin();
ColorBehavior::SetGlobalTargetColorProfile(profile);
}
@@ -321,33 +380,18 @@ int Main(int argc, char* argv[]) {
data->Data();
- // Warm-up: throw out the first iteration for more consistent results.
-
- if (!DecodeImageData(data.Get(), apply_color_correction, packet_size)) {
- fprintf(stderr, "Image decode failed [%s]\n", argv[1]);
- exit(3);
- }
-
// Image decode bench for iterations.
- double total_time = 0.0;
-
- for (size_t i = 0; i < iterations; ++i) {
- double start_time = GetCurrentTime();
- bool decoded =
- DecodeImageData(data.Get(), apply_color_correction, packet_size);
- double elapsed_time = GetCurrentTime() - start_time;
- total_time += elapsed_time;
- if (!decoded) {
- fprintf(stderr, "Image decode failed [%s]\n", argv[1]);
- exit(3);
- }
+ std::unique_ptr<ImageDecoder> decoder = ImageDecoder::Create(
+ data, true, ImageDecoder::kAlphaPremultiplied,
+ apply_color_correction ? ColorBehavior::TransformToTargetForTesting()
+ : ColorBehavior::Ignore());
+ if (packet_size) {
+ TimePacketedDecode(decoder.get(), data.Get(), packet_size, iterations);
+ } else {
+ TimeDecode(decoder.get(), data.Get(), iterations);
}
- // Results to stdout.
-
- double average_time = total_time / static_cast<double>(iterations);
- printf("%f %f\n", total_time, average_time);
return 0;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698