bug fix: remove inline from mfqe.c

remove inline from mfqe.c for vs
compatibility

Change-Id: I853f16503d285fcd41a1a12181d8745159156b5c
This commit is contained in:
James Berry
2012-03-21 13:20:36 -04:00
parent 9ed1b2f09e
commit 921ffdd2c9

View File

@@ -27,7 +27,7 @@
#include <stdlib.h> #include <stdlib.h>
static inline void filter_by_weight(unsigned char *src, int src_stride, static void filter_by_weight(unsigned char *src, int src_stride,
unsigned char *dst, int dst_stride, unsigned char *dst, int dst_stride,
int block_size, int src_weight) int block_size, int src_weight)
{ {
@@ -69,7 +69,7 @@ void vp8_filter_by_weight4x4_c(unsigned char *src, int src_stride,
filter_by_weight(src, src_stride, dst, dst_stride, 4, src_weight); filter_by_weight(src, src_stride, dst, dst_stride, 4, src_weight);
} }
static inline void apply_ifactor(unsigned char *y_src, static void apply_ifactor(unsigned char *y_src,
int y_src_stride, int y_src_stride,
unsigned char *y_dst, unsigned char *y_dst,
int y_dst_stride, int y_dst_stride,