From c89d15125016ab31750977127dac6b4cf5cc3c7c Mon Sep 17 00:00:00 2001 From: Jim Bankoski Date: Wed, 13 Aug 2014 18:09:05 -0700 Subject: vpx_codec_internal.h : clean out unused function warning Change-Id: I53659e3ff8ba1b70d89d152e0580ac7a412b89b2 --- vpx/internal/vpx_codec_internal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vpx') diff --git a/vpx/internal/vpx_codec_internal.h b/vpx/internal/vpx_codec_internal.h index 3ca650475..a7716d130 100644 --- a/vpx/internal/vpx_codec_internal.h +++ b/vpx/internal/vpx_codec_internal.h @@ -369,11 +369,11 @@ struct vpx_codec_priv_enc_mr_cfg #undef VPX_CTRL_USE_TYPE #define VPX_CTRL_USE_TYPE(id, typ) \ - static typ id##__value(va_list args) {return va_arg(args, typ);} \ + static VPX_INLINE typ id##__value(va_list args) {return va_arg(args, typ);} #undef VPX_CTRL_USE_TYPE_DEPRECATED #define VPX_CTRL_USE_TYPE_DEPRECATED(id, typ) \ - static typ id##__value(va_list args) {return va_arg(args, typ);} \ + static VPX_INLINE typ id##__value(va_list args) {return va_arg(args, typ);} #define CAST(id, arg) id##__value(arg) -- cgit v1.2.3