Hi, 2016-04-27 13:37 GMT+02:00 Alexandra Hájková <[email protected]>: > +#if AV_GCC_VERSION_AT_LEAST(4,3) > +# define av_unlikely(x) __builtin_expect((x) != 0, 0) > +#else > +# define av_unlikely(x) x > +#endif
What about adding the converse av_likely macro at the same time? Dead code, I know, for now. -- Christophe _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
