Merge "vp9/common: Silence MSVC warning in vp9_convolve.c."

This commit is contained in:
Tom Finegan 2014-02-07 18:34:44 -08:00 committed by Gerrit Code Review
commit e876cf3869

View File

@ -145,7 +145,7 @@ static const InterpKernel *get_filter_base(const int16_t *filter) {
}
static int get_filter_offset(const int16_t *f, const InterpKernel *base) {
return (const InterpKernel *)(intptr_t)f - base;
return (int)((const InterpKernel *)(intptr_t)f - base);
}
void vp9_convolve8_horiz_c(const uint8_t *src, ptrdiff_t src_stride,