summaryrefslogtreecommitdiff
path: root/vpx
diff options
context:
space:
mode:
authorJim Bankoski <jimbankoski@google.com>2014-08-13 18:09:05 -0700
committerJim Bankoski <jimbankoski@google.com>2014-08-13 18:09:05 -0700
commitc89d15125016ab31750977127dac6b4cf5cc3c7c (patch)
tree59c885c8759c460b8608bb6f4d1772a8d844bc9d /vpx
parentccef8842d2f4df4f52efe66b6b94de707244804f (diff)
downloadlibvpx-c89d15125016ab31750977127dac6b4cf5cc3c7c.tar
libvpx-c89d15125016ab31750977127dac6b4cf5cc3c7c.tar.gz
libvpx-c89d15125016ab31750977127dac6b4cf5cc3c7c.tar.bz2
libvpx-c89d15125016ab31750977127dac6b4cf5cc3c7c.zip
vpx_codec_internal.h : clean out unused function warning
Change-Id: I53659e3ff8ba1b70d89d152e0580ac7a412b89b2
Diffstat (limited to 'vpx')
-rw-r--r--vpx/internal/vpx_codec_internal.h4
1 files changed, 2 insertions, 2 deletions
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)