Go to the documentation of this file.
   25 #ifndef AVUTIL_MACROS_H 
   26 #define AVUTIL_MACROS_H 
   36 #define AV_STRINGIFY(s)         AV_TOSTRING(s) 
   37 #define AV_TOSTRING(s) #s 
   39 #define AV_GLUE(a, b) a ## b 
   40 #define AV_JOIN(a, b) AV_GLUE(a, b) 
   46 #define AV_PRAGMA(s) _Pragma(#s) 
   48 #define FFALIGN(x, a) (((x)+(a)-1)&~((a)-1))