20

我正在阅读avio.h(ffmpeg 的一部分),并且有这样的定义(?):

int avio_printf(AVIOContext *s, const char *fmt, ...) av_printf_format(2, 3);.

我不明白。有人可以解释一下这是做什么的吗?谢谢。

4

1 回答 1

24

av_printf_format是一个宏,可以选择在函数声明中添加 GCC 属性。它在 attributes.h 中定义:

#ifdef __GNUC__
#    define av_builtin_constant_p __builtin_constant_p
#    define av_printf_format(fmtpos, attrpos) __attribute__((__format__(__printf__, fmtpos, attrpos)))
#else
#    define av_builtin_constant_p(x) 0
#    define av_printf_format(fmtpos, attrpos)
#endif

所以这实际上是一个函数声明,如果在 GCC 上编译,它可能具有特定的属性。

format属性告诉 GCC 该函数接受它的参数,例如printf,这有助于诊断一些错误。

于 2013-04-30T09:12:02.863 回答