diff --git a/libavutil/avutil.h b/libavutil/avutil.h index a3cc93fa2a..01067e750e 100644 --- a/libavutil/avutil.h +++ b/libavutil/avutil.h @@ -29,6 +29,10 @@ #define AV_STRINGIFY(s) AV_TOSTRING(s) #define AV_TOSTRING(s) #s + +#define AV_GLUE(a, b) a ## b +#define AV_JOIN(a, b) AV_GLUE(a, b) + #define AV_PRAGMA(s) _Pragma(#s) #define AV_VERSION_INT(a, b, c) (a<<16 | b<<8 | c)