shithub: libvpx

Download patch

ref: d973fbb1de43353652220dae0dc065b9b7bf9f8e
parent: 28eebf3e362ca243f59b7f47d4c97712e241debe
parent: 387bb8bed76eabe2f11877265e534fc2c9dc4256
author: Yaowu Xu <[email protected]>
date: Thu Feb 26 10:13:06 EST 2015

Merge "Correct parameter order in a function call"

--- a/vp9/encoder/vp9_encoder.c
+++ b/vp9/encoder/vp9_encoder.c
@@ -4077,7 +4077,7 @@
                          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