Use strcpy() to change extension.
[frameshot.git] / common.h
blob643e7d3893dc8724d6946df8dbd7bf16b48fe007
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;
22 typedef struct
24 uint32_t i_width, i_height;
25 } config_t;