summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2015-02-26 15:13:06 -0800
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2015-02-26 15:13:06 -0800
commitd973fbb1de43353652220dae0dc065b9b7bf9f8e (patch)
treef40170e2b399ea6cbc073f598e2487ea958eb71c
parent28eebf3e362ca243f59b7f47d4c97712e241debe (diff)
parent387bb8bed76eabe2f11877265e534fc2c9dc4256 (diff)
downloadlibvpx-d973fbb1de43353652220dae0dc065b9b7bf9f8e.tar
libvpx-d973fbb1de43353652220dae0dc065b9b7bf9f8e.tar.gz
libvpx-d973fbb1de43353652220dae0dc065b9b7bf9f8e.tar.bz2
libvpx-d973fbb1de43353652220dae0dc065b9b7bf9f8e.zip
Merge "Correct parameter order in a function call"
-rw-r--r--vp9/encoder/vp9_encoder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/encoder/vp9_encoder.c b/vp9/encoder/vp9_encoder.c
index e2ed95c3e..9147c29e5 100644
--- a/vp9/encoder/vp9_encoder.c
+++ b/vp9/encoder/vp9_encoder.c
@@ -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