Searched defs:yuv_type (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/media/base/simd/
H A Dconvert_yuv_to_rgb_x86.cc28 YUVType yuv_type) {
29 unsigned int y_shift = GetVerticalShift(yuv_type);
43 GetLookupTable(yuv_type));
58 YUVType yuv_type) {
59 unsigned int y_shift = GetVerticalShift(yuv_type);
71 GetLookupTable(yuv_type));
17 ConvertYUVAToARGB_MMX(const uint8* yplane, const uint8* uplane, const uint8* vplane, const uint8* aplane, uint8* rgbframe, int width, int height, int ystride, int uvstride, int astride, int rgbstride, YUVType yuv_type) argument
49 ConvertYUVToRGB32_SSE(const uint8* yplane, const uint8* uplane, const uint8* vplane, uint8* rgbframe, int width, int height, int ystride, int uvstride, int rgbstride, YUVType yuv_type) argument
H A Dconvert_yuv_to_rgb_c.cc227 YUVType yuv_type) {
228 unsigned int y_shift = GetVerticalShift(yuv_type);
240 GetLookupTable(yuv_type));
255 YUVType yuv_type) {
256 unsigned int y_shift = yuv_type;
270 GetLookupTable(yuv_type));
218 ConvertYUVToRGB32_C(const uint8* yplane, const uint8* uplane, const uint8* vplane, uint8* rgbframe, int width, int height, int ystride, int uvstride, int rgbstride, YUVType yuv_type) argument
244 ConvertYUVAToARGB_C(const uint8* yplane, const uint8* uplane, const uint8* vplane, const uint8* aplane, uint8* rgbaframe, int width, int height, int ystride, int uvstride, int astride, int rgbastride, YUVType yuv_type) argument
/external/chromium_org/media/tools/player_x11/
H A Dx11_video_renderer.cc110 media::YUVType yuv_type = (video_frame->format() == media::VideoFrame::YV12 || local
121 yuv_type);
/external/chromium_org/media/base/
H A Dyuv_convert_unittest.cc162 : yuv_type(y),
167 media::YUVType yuv_type; member in struct:media::YUVScaleTestData
175 switch (GetParam().yuv_type) {
192 switch (GetParam().yuv_type) {
216 GetParam().yuv_type,
230 GetParam().yuv_type);
247 GetParam().yuv_type,
269 GetParam().yuv_type,
286 GetParam().yuv_type,
303 GetParam().yuv_type,
[all...]
H A Dyuv_convert.cc224 YUVType yuv_type,
228 if ((yuv_type == YV12 && (source_width < 2 || source_height < 2)) ||
229 (yuv_type == YV16 && (source_width < 2 || source_height < 1)) ||
244 unsigned int y_shift = GetVerticalShift(yuv_type);
652 YUVType yuv_type) {
662 yuv_type);
676 YUVType yuv_type) {
688 yuv_type);
213 ScaleYUVToRGB32(const uint8* y_buf, const uint8* u_buf, const uint8* v_buf, uint8* rgb_buf, int source_width, int source_height, int width, int height, int y_pitch, int uv_pitch, int rgb_pitch, YUVType yuv_type, Rotate view_rotate, ScaleFilter filter) argument
643 ConvertYUVToRGB32(const uint8* yplane, const uint8* uplane, const uint8* vplane, uint8* rgbframe, int width, int height, int ystride, int uvstride, int rgbstride, YUVType yuv_type) argument
665 ConvertYUVAToARGB(const uint8* yplane, const uint8* uplane, const uint8* vplane, const uint8* aplane, uint8* rgbframe, int width, int height, int ystride, int uvstride, int astride, int rgbstride, YUVType yuv_type) argument

Completed in 114 milliseconds