>> + AV_PIX_FMT_P016 >> +}; >> + >> +#define DIV_UP(a, b) ( ((a) + (b) - 1) / (b) ) > >> +#define ALIGN_UP(a, b) ((a + b -1) & ~(b-1)) > > this is missing () to protect the arguments Fixed locally, will push this evening or tomorrow if no further comments show up.