]> granicus.if.org Git - libvpx/commit
Fix MSVC warning.
authorPaul Wilkins <paulwilkins@google.com>
Mon, 7 Oct 2013 09:25:10 +0000 (02:25 -0700)
committerPaul Wilkins <paulwilkins@google.com>
Mon, 7 Oct 2013 09:26:44 +0000 (02:26 -0700)
commit950058765d7f2f13a4718916ea352fd78e67d192
tree988d181a160873d7380eb33b855a2cb4b966d288
parentbf893e84bd9416f732d24c7fabbe03dfcf2b2686
Fix MSVC warning.

A new set of MSVC warnings were introduced by change
I3f36d3f7cd8d15195a6e2fafd1777cdaf9ecb847

In particular MSVC does not like:-

typedef const int16_t subpel_kernel[SUBPEL_TAPS];

struct subpix_fn_table {
  const subpel_kernel *filter_x;
  const subpel_kernel *filter_y;
};

causes  new warning in MSVC.
warning C4114: same type qualifier used more than once

Change-Id: Iae596fd13aadf36169faf00c68eabe9a32a9b156
vp9/common/vp9_filter.h