• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:rgb

32                              uint16_t* rgb,  in _YUV420SToRGB565()  argument
43 *rgb = YUVToRGB565(*Y, nU, nV); in _YUV420SToRGB565()
44 Y++; rgb++; in _YUV420SToRGB565()
45 *rgb = YUVToRGB565(*Y, nU, nV); in _YUV420SToRGB565()
46 Y++; rgb++; in _YUV420SToRGB565()
62 uint32_t* rgb, in _YUV420SToRGB32() argument
73 *rgb = YUVToRGB32(*Y, nU, nV); in _YUV420SToRGB32()
74 Y++; rgb++; in _YUV420SToRGB32()
75 *rgb = YUVToRGB32(*Y, nU, nV); in _YUV420SToRGB32()
76 Y++; rgb++; in _YUV420SToRGB32()
88 void YV12ToRGB565(const void* yv12, void* rgb, int width, int height) in YV12ToRGB565() argument
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
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
112 _YUV420SToRGB32(Y, U, V, 1, reinterpret_cast<uint32_t*>(rgb), width, height); in YU12ToRGB32()
121 uint16_t* rgb, in _NVXXToRGB565() argument
125 _YUV420SToRGB565(Y, U, V, 2, rgb, width, height); in _NVXXToRGB565()
134 uint32_t* rgb, 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
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
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
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
170 reinterpret_cast<uint32_t*>(rgb), width, height); in NV21ToRGB32()