Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
e876cf38
Commit
e876cf38
authored
Feb 07, 2014
by
Tom Finegan
Committed by
Gerrit Code Review
Feb 07, 2014
Browse files
Merge "vp9/common: Silence MSVC warning in vp9_convolve.c."
parents
e844624a
bf79a4da
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_convolve.c
View file @
e876cf38
...
...
@@ -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
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment