Chromium Code Reviews| Index: media/base/yuv_convert.h |
| =================================================================== |
| --- media/base/yuv_convert.h (revision 86049) |
| +++ media/base/yuv_convert.h (working copy) |
| @@ -77,6 +77,22 @@ |
| int ystride, |
| int uvstride); |
| +void ConvertRGB24ToYUV(const uint8* rgbframe, |
|
scherkus (not reviewing)
2011/05/23 05:05:09
unit test?
Per K
2011/05/23 12:05:47
Done.
|
| + uint8* yplane, |
| + uint8* uplane, |
| + uint8* vplane, |
| + int width, |
| + int height, |
| + int rgbstride, |
| + int ystride, |
| + int uvstride); |
| + |
| +void ConvertYUY2ToYUV(const uint8* src, |
|
scherkus (not reviewing)
2011/05/23 05:05:09
unit test?
Per K
2011/05/23 12:05:47
Done.
|
| + uint8* yplane, |
| + uint8* uplane, |
| + uint8* vplane, |
| + int width, |
| + int height); |
| } // namespace media |
| #endif // MEDIA_BASE_YUV_CONVERT_H_ |