Commit 215c3ab1 authored by aurel's avatar aurel

move NULL_IF_CONFIG_SMALL() definition into internal header

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16619 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 602461d1
......@@ -323,15 +323,4 @@ static inline av_pure int ff_get_fourcc(const char *s){
}\
}
/**
* Returns NULL if CONFIG_SMALL is true otherwise the argument
* without modifications, used to disable the definition of strings
* (for example AVCodec long_names).
*/
#if CONFIG_SMALL
# define NULL_IF_CONFIG_SMALL(x) NULL
#else
# define NULL_IF_CONFIG_SMALL(x) x
#endif
#endif /* AVUTIL_COMMON_H */
......@@ -302,4 +302,15 @@ static av_always_inline av_const float truncf(float x)
}
#endif /* HAVE_TRUNCF */
/**
* Returns NULL if CONFIG_SMALL is true otherwise the argument
* without modifications, used to disable the definition of strings
* (for example AVCodec long_names).
*/
#if CONFIG_SMALL
# define NULL_IF_CONFIG_SMALL(x) NULL
#else
# define NULL_IF_CONFIG_SMALL(x) x
#endif
#endif /* AVUTIL_INTERNAL_H */
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