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

Unified Diff: media/base/simd/convert_rgb_to_yuv_ssse3.h

Issue 10837118: Dead code elimination: scythe.chrome_functions:segment.path %media% edition, round 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 4 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_rgb_to_yuv_ssse3.h
diff --git a/media/base/simd/convert_rgb_to_yuv_ssse3.h b/media/base/simd/convert_rgb_to_yuv_ssse3.h
index 9f7a3728ffc21c01c6f91ebbdd57c1fd9ac4e075..84557d197facb77ca4e6c4b780f9ae3d4edb4593 100644
--- a/media/base/simd/convert_rgb_to_yuv_ssse3.h
+++ b/media/base/simd/convert_rgb_to_yuv_ssse3.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -27,29 +27,6 @@ void ConvertARGBToYUVRow_SSSE3(const uint8* argb,
uint8* v,
int width);
-// Convert a row of 24-bit RGB pixels to YV12 pixels.
-void ConvertRGBToYUVEven_SSSE3(const uint8* rgb,
- uint8* y,
- uint8* u,
- uint8* v,
- int width);
-void ConvertRGBToYUVOdd_SSSE3(const uint8* rgb,
- uint8* y,
- uint8* u,
- uint8* v,
- int width);
-
-// Convert a row of 32-bit RGB pixels to YV12 pixels.
-void ConvertARGBToYUVEven_SSSE3(const uint8* argb,
- uint8* y,
- uint8* u,
- uint8* v,
- int width);
-void ConvertARGBToYUVOdd_SSSE3(const uint8* argb,
- uint8* y,
- uint8* u,
- uint8* v,
- int width);
#ifdef __cplusplus
}
#endif

Powered by Google App Engine
This is Rietveld 408576698