shithub: treason

ref: b6f90701508babfab5fec9c71f6f43a72c933737
dir: treason/misc.h

View raw version
#define MAX(a,b) ((a)>(b)?(a):(b))
#define MIN(a,b) ((a)<(b)?(a):(b))

int str2fmt(char *s);
char *fmt2str(int fmt);
uvlong nanosec(void);
void yuv420_xrgb32(int width, int height, u8int *y, u8int *u, u8int *v, u32int ystride, u32int uvstride, u8int *rgb, u32int rgbstride);

extern int nproc;
extern int debug;
extern uvlong yuv→rgb;