Home | History | Annotate | Download | only in camera

Lines Matching refs:rgb

32                              uint16_t* rgb,
43 *rgb = YUVToRGB565(*Y, nU, nV);
44 Y++; rgb++;
45 *rgb = YUVToRGB565(*Y, nU, nV);
46 Y++; rgb++;
62 uint32_t* rgb,
73 *rgb = YUVToRGB32(*Y, nU, nV);
74 Y++; rgb++;
75 *rgb = YUVToRGB32(*Y, nU, nV);
76 Y++; rgb++;
88 void YV12ToRGB565(const void* yv12, void* rgb, int width, int 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)
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)
112 _YUV420SToRGB32(Y, U, V, 1, reinterpret_cast<uint32_t*>(rgb), width, height);
121 uint16_t* rgb,
125 _YUV420SToRGB565(Y, U, V, 2, rgb, width, height);
134 uint32_t* rgb,
138 _YUV420SToRGB32(Y, U, V, 2, rgb, width, height);
141 void NV12ToRGB565(const void* nv12, void* rgb, int width, int height)
146 reinterpret_cast<uint16_t*>(rgb), width, height);
149 void NV12ToRGB32(const void* nv12, void* rgb, int width, int height)
154 reinterpret_cast<uint32_t*>(rgb), width, height);
157 void NV21ToRGB565(const void* nv21, void* rgb, int width, int height)
162 reinterpret_cast<uint16_t*>(rgb), width, height);
165 void NV21ToRGB32(const void* nv21, void* rgb, int width, int height)
170 reinterpret_cast<uint32_t*>(rgb), width, height);