Home | History | Annotate | Download | only in camera

Lines Matching refs:width

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