Home | History | Annotate | Download | only in camera

Lines Matching refs:height

34                              int height)
39 for (int y = 0; y < height; y++) {
64 int height)
69 for (int y = 0; y < height; y++) {
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);
123 int height)
125 _YUV420SToRGB565(Y, U, V, 2, rgb, width, height);
136 int height)
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);