Commit 1d3417c4 authored by mru's avatar mru

Add macro AV_JOIN() for joining two tokens into one

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21482 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 19dfe04a
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment