commit | 439c50251faa4d029a18e302562efd097fd65135 | [log] [tgz] |
---|---|---|
author | Nathan E. Egge <negge@mozilla.com> | Sun Jul 17 23:07:27 2016 -0400 |
committer | Yaowu Xu <yaowu@google.com> | Fri Oct 14 14:59:27 2016 -0700 |
tree | b9fa1c90b607c0d464c34f334e931a40f86390a6 | |
parent | a67c0ff4d7b90d276b4acb0a48d7674f7d1e86b5 [diff] |
Fix bug in av1_tree_to_cdf_2D() macro. Change-Id: Ic04e180b09745fab2230d05985770c41deea4fad
diff --git a/aom_dsp/prob.h b/aom_dsp/prob.h index 63121e0..f0ea01b 100644 --- a/aom_dsp/prob.h +++ b/aom_dsp/prob.h
@@ -117,7 +117,7 @@ } \ } while (0) -#define av1_tree_to_cdf_2D(tree, probs, cdf, u, v) \ +#define av1_tree_to_cdf_2D(tree, probs, cdf, v, u) \ do { \ int j; \ int i; \