summaryrefslogtreecommitdiff
path: root/v3/fake-pipeline2/util.h (plain)
blob: 18969a8fc2de3e5f0cc9657ab36e826c558bf4c9
1#ifndef __UTIL_H
2#define __UTIL_H
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8void yuyv422_to_rgb24(unsigned char *buf, unsigned char *rgb, int width, int height);
9void nv21_to_rgb24(unsigned char *buf, unsigned char *rgb, int width, int height);
10
11#ifdef __cplusplus
12}
13#endif
14
15#endif
16