Lines Matching refs:width
30 int width, int height) { in _YUV420SToRGB565() argument
35 for (int x = 0; x < width; x += 2, U += dUV, V += dUV) { in _YUV420SToRGB565()
56 const uint8_t* V, int dUV, uint32_t* rgb, int width, in _YUV420SToRGB32() argument
62 for (int x = 0; x < width; x += 2, U += dUV, V += dUV) { in _YUV420SToRGB32()
82 void YV12ToRGB565(const void* yv12, void* rgb, int width, int height) { in YV12ToRGB565() argument
83 const int pix_total = width * height; in YV12ToRGB565()
87 _YUV420SToRGB565(Y, U, V, 1, reinterpret_cast<uint16_t*>(rgb), width, height); in YV12ToRGB565()
90 void YV12ToRGB32(const void* yv12, void* rgb, int width, int height) { in YV12ToRGB32() argument
91 const int pix_total = width * height; in YV12ToRGB32()
95 _YUV420SToRGB32(Y, U, V, 1, reinterpret_cast<uint32_t*>(rgb), width, height); in YV12ToRGB32()
98 void YU12ToRGB32(const void* yu12, void* rgb, int width, int height) { in YU12ToRGB32() argument
99 const int pix_total = width * height; in YU12ToRGB32()
103 _YUV420SToRGB32(Y, U, V, 1, reinterpret_cast<uint32_t*>(rgb), width, height); in YU12ToRGB32()
110 uint16_t* rgb, int width, int height) { in _NVXXToRGB565() argument
111 _YUV420SToRGB565(Y, U, V, 2, rgb, width, height); in _NVXXToRGB565()
118 uint32_t* rgb, int width, int height) { in _NVXXToRGB32() argument
119 _YUV420SToRGB32(Y, U, V, 2, rgb, width, height); in _NVXXToRGB32()
122 void NV12ToRGB565(const void* nv12, void* rgb, int width, int height) { in NV12ToRGB565() argument
123 const int pix_total = width * height; in NV12ToRGB565()
126 reinterpret_cast<uint16_t*>(rgb), width, height); in NV12ToRGB565()
129 void NV12ToRGB32(const void* nv12, void* rgb, int width, int height) { in NV12ToRGB32() argument
130 const int pix_total = width * height; in NV12ToRGB32()
133 reinterpret_cast<uint32_t*>(rgb), width, height); in NV12ToRGB32()
136 void NV21ToRGB565(const void* nv21, void* rgb, int width, int height) { in NV21ToRGB565() argument
137 const int pix_total = width * height; in NV21ToRGB565()
140 reinterpret_cast<uint16_t*>(rgb), width, height); in NV21ToRGB565()
143 void NV21ToRGB32(const void* nv21, void* rgb, int width, int height) { in NV21ToRGB32() argument
144 const int pix_total = width * height; in NV21ToRGB32()
147 reinterpret_cast<uint32_t*>(rgb), width, height); in NV21ToRGB32()