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
387bb8be
Commit
387bb8be
authored
Feb 26, 2015
by
Yaowu Xu
Browse files
Correct parameter order in a function call
Change-Id: Ibd87db1c4371edcbe193d39df2fdc07d3842c21a
parent
e2b4ef13
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vp9/encoder/vp9_encoder.c
vp9/encoder/vp9_encoder.c
+1
-1
No files found.
vp9/encoder/vp9_encoder.c
View file @
387bb8be
...
...
@@ -4077,7 +4077,7 @@ int vp9_set_size_literal(VP9_COMP *cpi, unsigned int width,
unsigned
int
height
)
{
VP9_COMMON
*
cm
=
&
cpi
->
common
;
#if CONFIG_VP9_HIGHBITDEPTH
check_initial_width
(
cpi
,
1
,
1
,
cm
->
use_highbitdepth
);
check_initial_width
(
cpi
,
cm
->
use_highbitdepth
,
1
,
1
);
#else
check_initial_width
(
cpi
,
1
,
1
);
#endif // CONFIG_VP9_HIGHBITDEPTH
...
...
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