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

Unified Diff: media/base/yuv_convert_internal.h

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/yuv_convert_internal.h
diff --git a/media/base/yuv_convert_internal.h b/media/base/yuv_convert_internal.h
deleted file mode 100644
index 7be14c4821cebe18faafbb0f90e648fb35fb89cc..0000000000000000000000000000000000000000
--- a/media/base/yuv_convert_internal.h
+++ /dev/null
@@ -1,70 +0,0 @@
-// Copyright (c) 2011 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.
-
-// This file defines the YUV conversion functions for each specific
-// optimization.
-
-#ifndef MEDIA_BASE_YUV_CONVERT_INTERNAL_H_
-#define MEDIA_BASE_YUV_CONVERT_INTERNAL_H_
-
-#include "base/basictypes.h"
-
-namespace media {
-
-// SSE2 version of converting RGBA to YV12.
-void ConvertRGB32ToYUV_SSE2(const uint8* rgbframe,
- uint8* yplane,
- uint8* uplane,
- uint8* vplane,
- int width,
- int height,
- int rgbstride,
- int ystride,
- int uvstride);
-
-// This is a C reference implementation of the above routine.
-// This method should only be used in unit test.
-void ConvertRGB32ToYUV_SSE2_Reference(const uint8* rgbframe,
- uint8* yplane,
- uint8* uplane,
- uint8* vplane,
- int width,
- int height,
- int rgbstride,
- int ystride,
- int uvstride);
-
-// C version of converting RGBA to YV12.
-void ConvertRGB32ToYUV_C(const uint8* rgbframe,
- uint8* yplane,
- uint8* uplane,
- uint8* vplane,
- int width,
- int height,
- int rgbstride,
- int ystride,
- int uvstride);
-
-// C version of converting RGB24 to YV12.
-void ConvertRGB24ToYUV_C(const uint8* rgbframe,
- uint8* yplane,
- uint8* uplane,
- uint8* vplane,
- int width,
- int height,
- int rgbstride,
- int ystride,
- int uvstride);
-
-// C version of converting YUY2 to YV12.
-void ConvertYUY2ToYUV_C(const uint8* src,
- uint8* yplane,
- uint8* uplane,
- uint8* vplane,
- int width,
- int height);
-
-} // namespace media
-
-#endif // MEDIA_BASE_YUV_CONVERT_INTERNAL_H_
« no previous file with comments | « media/base/yuv_convert_c.cc ('k') | media/base/yuv_convert_sse2.cc » ('j') | media/media.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698