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

Unified Diff: media/tools/scaler_bench/scaler_bench.cc

Issue 1733004: Speed up vertical filtering using v = a+(b-a)*x formula... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 8 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 | « media/base/yuv_convert.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/tools/scaler_bench/scaler_bench.cc
===================================================================
--- media/tools/scaler_bench/scaler_bench.cc (revision 45148)
+++ media/tools/scaler_bench/scaler_bench.cc (working copy)
@@ -200,6 +200,12 @@
<< "ms/frame" << std::endl;
std::cout << "No filtering: " << BenchmarkFilter(media::FILTER_NONE)
<< "ms/frame" << std::endl;
+ std::cout << "Bilinear Vertical: "
+ << BenchmarkFilter(media::FILTER_BILINEAR_V)
+ << "ms/frame" << std::endl;
+ std::cout << "Bilinear Horizontal: "
+ << BenchmarkFilter(media::FILTER_BILINEAR_H)
+ << "ms/frame" << std::endl;
std::cout << "Bilinear: " << BenchmarkFilter(media::FILTER_BILINEAR)
<< "ms/frame" << std::endl;
« no previous file with comments | « media/base/yuv_convert.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698