summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfbarchard@chromium.org <fbarchard@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-22 01:35:33 +0000
committerfbarchard@chromium.org <fbarchard@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-22 01:35:33 +0000
commitfde32aa69ca4233ac30be96ce09f7470b924fab1 (patch)
treec17d2582318526d09a18bf86318610c12325130c
parent02ed0b38f11853a248c96267d3d692d8ec74e5c1 (diff)
downloadchromium_src-fde32aa69ca4233ac30be96ce09f7470b924fab1.zip
chromium_src-fde32aa69ca4233ac30be96ce09f7470b924fab1.tar.gz
chromium_src-fde32aa69ca4233ac30be96ce09f7470b924fab1.tar.bz2
Revert 53266 - Testing a revert works removing a harmless comment CL
BUG=none TEST=none Review URL: http://codereview.chromium.org/2883032 TBR=fbarchard@chromium.org Review URL: http://codereview.chromium.org/2832068 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53293 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--media/base/yuv_row.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/media/base/yuv_row.h b/media/base/yuv_row.h
index 0a2990b..262d9a0 100644
--- a/media/base/yuv_row.h
+++ b/media/base/yuv_row.h
@@ -53,6 +53,7 @@ void DoubleYUVToRGB32Row(const uint8* y_buf,
// Handles arbitrary scaling up or down.
// Mirroring is supported, but not 90 or 270 degree rotation.
// Chroma is under sampled every 2 pixels for performance.
+// This is the slowest of the scalers.
void ScaleYUVToRGB32Row(const uint8* y_buf,
const uint8* u_buf,
const uint8* v_buf,
@@ -60,10 +61,6 @@ void ScaleYUVToRGB32Row(const uint8* y_buf,
int width,
int source_dx);
-// Handles arbitrary scaling up or down with bilinear filtering.
-// Mirroring is supported, but not 90 or 270 degree rotation.
-// Chroma is under sampled every 2 pixels for performance.
-// This is the slowest of the scalers.
void LinearScaleYUVToRGB32Row(const uint8* y_buf,
const uint8* u_buf,
const uint8* v_buf,