Commit e876cf38 authored by Tom Finegan's avatar Tom Finegan Committed by Gerrit Code Review
Browse files

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

parents e844624a bf79a4da
Branches
Tags
No related merge requests found
Showing with 1 addition and 1 deletion
...@@ -145,7 +145,7 @@ static const InterpKernel *get_filter_base(const int16_t *filter) { ...@@ -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) { 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, void vp9_convolve8_horiz_c(const uint8_t *src, ptrdiff_t src_stride,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment