Add CMakeLists.txt
[frameshot.git] / common.h
blob965630e3cf1c2a51a2863ca6154122687eabcbe9
2 typedef void *hnd_t;
4 typedef struct
6 int i_csp;
8 int i_plane;
9 int i_stride[4];
10 uint8_t *plane[4];
11 } image_t;
13 typedef struct
15 /* pts of picture */
16 int64_t i_pts;
18 /* In: raw data */
19 image_t img;
20 } picture_t;