configure: Avoid warnings if av_always_inline is disabled
authorMartin Storsjö <martin@martin.st>
Thu, 16 Dec 2010 08:41:17 +0000 (08:41 +0000)
committerMartin Storsjö <martin@martin.st>
Thu, 16 Dec 2010 08:41:17 +0000 (08:41 +0000)
commit4f7d2fe2e3db4283512157237c03e5ae4a2e018c
treea93fd5e1e106ffb82545b589e59f3b99429b2bc3
parent7786c384f627b2a9de7ddd8aff3d14fca6d6f0c6
configure: Avoid warnings if av_always_inline is disabled

This macro is disabled if --enable-small or --disable-optimizations are set.
Currently, this leads to warnings about functions being defined but not used,
for functions in header files.

By defining av_always_inline as inline or as av_unused, we avoid these
warnings.

This doesn't make a normal build with --enable-small any larger,
since the compiler probably chooses not to inline these functions even
if they're marked as inline.

Originally committed as revision 26032 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure