summaryrefslogtreecommitdiff
path: root/vp9
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2015-02-26 11:39:57 -0800
committerYaowu Xu <yaowu@google.com>2015-02-26 11:39:57 -0800
commit387bb8bed76eabe2f11877265e534fc2c9dc4256 (patch)
tree397adaa1cc39656e52e4daf2dbf9b4c7bce0c413 /vp9
parente2b4ef131312f2c649d159d21e2c486bdbac19b4 (diff)
downloadlibvpx-387bb8bed76eabe2f11877265e534fc2c9dc4256.tar
libvpx-387bb8bed76eabe2f11877265e534fc2c9dc4256.tar.gz
libvpx-387bb8bed76eabe2f11877265e534fc2c9dc4256.tar.bz2
libvpx-387bb8bed76eabe2f11877265e534fc2c9dc4256.zip
Correct parameter order in a function call
Change-Id: Ibd87db1c4371edcbe193d39df2fdc07d3842c21a
Diffstat (limited to 'vp9')
-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