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

Unified Diff: media/base/simd/convert_yuv_to_rgb_c.cc

Issue 7888012: Reorganize YUV scalers (Continued) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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
Index: media/base/simd/convert_yuv_to_rgb_c.cc
diff --git a/media/base/simd/convert_yuv_to_rgb_c.cc b/media/base/simd/convert_yuv_to_rgb_c.cc
index f8e70b29432ee76f6334f4435cd62366c6c170f1..c4039845357917907c915362b3ba0a24765694e3 100644
--- a/media/base/simd/convert_yuv_to_rgb_c.cc
+++ b/media/base/simd/convert_yuv_to_rgb_c.cc
@@ -3,8 +3,7 @@
// found in the LICENSE file.
#include "media/base/simd/convert_yuv_to_rgb.h"
-// TODO(hclam): Shouldn't depend on yuv_row.h.
-#include "media/base/yuv_row.h"
+#include "media/base/simd/yuv_to_rgb_table.h"
#define packuswb(x) ((x) < 0 ? 0 : ((x) > 255 ? 255 : (x)))
#define paddsw(x, y) (((x) + (y)) < -32768 ? -32768 : \

Powered by Google App Engine
This is Rietveld 408576698