• Home
  • Raw
  • Download

Lines Matching refs:width

33                              int width,  in _YUV420SToRGB565()  argument
40 for (int x = 0; x < width; x += 2, U += dUV, V += dUV) { in _YUV420SToRGB565()
63 int width, in _YUV420SToRGB32() argument
70 for (int x = 0; x < width; x += 2, U += dUV, V += dUV) { in _YUV420SToRGB32()
88 void YV12ToRGB565(const void* yv12, void* rgb, int width, int height) in YV12ToRGB565() argument
90 const int pix_total = width * height; in YV12ToRGB565()
94 _YUV420SToRGB565(Y, U, V, 1, reinterpret_cast<uint16_t*>(rgb), width, height); in YV12ToRGB565()
97 void YV12ToRGB32(const void* yv12, void* rgb, int width, int height) in YV12ToRGB32() argument
99 const int pix_total = width * height; in YV12ToRGB32()
103 _YUV420SToRGB32(Y, U, V, 1, reinterpret_cast<uint32_t*>(rgb), width, height); in YV12ToRGB32()
106 void YU12ToRGB32(const void* yu12, void* rgb, int width, int height) in YU12ToRGB32() argument
108 const int pix_total = width * height; in YU12ToRGB32()
112 _YUV420SToRGB32(Y, U, V, 1, reinterpret_cast<uint32_t*>(rgb), width, height); in YU12ToRGB32()
122 int width, in _NVXXToRGB565() argument
125 _YUV420SToRGB565(Y, U, V, 2, rgb, width, height); in _NVXXToRGB565()
135 int width, in _NVXXToRGB32() argument
138 _YUV420SToRGB32(Y, U, V, 2, rgb, width, height); in _NVXXToRGB32()
141 void NV12ToRGB565(const void* nv12, void* rgb, int width, int height) in NV12ToRGB565() argument
143 const int pix_total = width * height; in NV12ToRGB565()
146 reinterpret_cast<uint16_t*>(rgb), width, height); in NV12ToRGB565()
149 void NV12ToRGB32(const void* nv12, void* rgb, int width, int height) in NV12ToRGB32() argument
151 const int pix_total = width * height; in NV12ToRGB32()
154 reinterpret_cast<uint32_t*>(rgb), width, height); in NV12ToRGB32()
157 void NV21ToRGB565(const void* nv21, void* rgb, int width, int height) in NV21ToRGB565() argument
159 const int pix_total = width * height; in NV21ToRGB565()
162 reinterpret_cast<uint16_t*>(rgb), width, height); in NV21ToRGB565()
165 void NV21ToRGB32(const void* nv21, void* rgb, int width, int height) in NV21ToRGB32() argument
167 const int pix_total = width * height; in NV21ToRGB32()
170 reinterpret_cast<uint32_t*>(rgb), width, height); in NV21ToRGB32()