| Index: media/base/yuv_convert_internal.h
|
| diff --git a/media/base/yuv_convert_internal.h b/media/base/yuv_convert_internal.h
|
| index 80776aaa78fb999bcd250f9d9f486fa9dfa368c5..7be14c4821cebe18faafbb0f90e648fb35fb89cc 100644
|
| --- a/media/base/yuv_convert_internal.h
|
| +++ b/media/base/yuv_convert_internal.h
|
| @@ -13,15 +13,15 @@
|
| namespace media {
|
|
|
| // SSE2 version of converting RGBA to YV12.
|
| -extern void ConvertRGB32ToYUV_SSE2(const uint8* rgbframe,
|
| - uint8* yplane,
|
| - uint8* uplane,
|
| - uint8* vplane,
|
| - int width,
|
| - int height,
|
| - int rgbstride,
|
| - int ystride,
|
| - int uvstride);
|
| +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.
|
|
|