On 28/04/15 11:38, Vittorio Giovara wrote: > +#define H263_GOB_HEIGHT(h) (h) <= 400 ? 1 : (h) <= 800 ? 2 : 4
#define H263_GOB_HEIGHT(h) ((h) <= 400 ? 1 : (h) <= 800 ? 2 : 4) Might be safer, for the rest it is fine for me. lu _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
