Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
libvpx
Commits
e5904465
Commit
e5904465
authored
Aug 08, 2012
by
Yaowu Xu
Browse files
a tiny fix for MSVC build
Change-Id: Ib23b0711a4690e1edff3131ce48527b6805877fb
parent
2056f7e0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
vp8/common/filter.c
vp8/common/filter.c
+5
-0
No files found.
vp8/common/filter.c
View file @
e5904465
...
...
@@ -628,7 +628,12 @@ static void vp8_filter_block2d_8_c
(
kInterp_Extend
-
1
)
+
output_height
+
kInterp_Extend
;
const
unsigned
int
max_intermediate_height
=
(
kInterp_Extend
-
1
)
+
filter_max_height
+
kInterp_Extend
;
#ifdef _MSC_VER
// MSVC does not support C99 style declaration
unsigned
char
intermediate_buffer
[
23
*
16
];
#else
unsigned
char
intermediate_buffer
[
max_intermediate_height
*
filter_max_width
];
#endif
const
int
intermediate_next_stride
=
1
-
intermediate_height
*
output_width
;
// Horizontal pass (src -> transposed intermediate).
...
...
Write
Preview
Markdown
is supported
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