Searched refs:cvtYUV420sp2RGBA (Results 1 – 1 of 1) sorted by relevance
/external/opencv3/modules/imgproc/src/ |
D | color.cpp | 6400 inline void cvtYUV420sp2RGBA(Mat& _dst, int _stride, const uchar* _y1, const uchar* _uv) in cvtYUV420sp2RGBA() function 8429 case 400: cvtYUV420sp2RGBA<0, 0>(dst, srcstep, y, uv); break; in cvtColor() 8430 case 401: cvtYUV420sp2RGBA<0, 1>(dst, srcstep, y, uv); break; in cvtColor() 8431 case 420: cvtYUV420sp2RGBA<2, 0>(dst, srcstep, y, uv); break; in cvtColor() 8432 case 421: cvtYUV420sp2RGBA<2, 1>(dst, srcstep, y, uv); break; in cvtColor()
|