Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
ed5a6bd9
Commit
ed5a6bd9
authored
Feb 10, 2016
by
Angie Chiang
Committed by
Gerrit Code Review
Feb 10, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge "fix range_check error in vp10_[fwd/inv]_txfm1d.c" into nextgenv2
parents
3c8bd0d3
f9856575
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
vp10/common/vp10_fwd_txfm1d.c
vp10/common/vp10_fwd_txfm1d.c
+2
-1
vp10/common/vp10_inv_txfm1d.c
vp10/common/vp10_inv_txfm1d.c
+2
-1
No files found.
vp10/common/vp10_fwd_txfm1d.c
View file @
ed5a6bd9
...
...
@@ -8,6 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include <stdlib.h>
#include "vp10/common/vp10_fwd_txfm1d.h"
#if CONFIG_COEFFICIENT_RANGE_CHECKING
#define range_check(stage, input, buf, size, bit) \
...
...
@@ -24,7 +25,7 @@
printf("%d,", input[j]); \
} \
printf("\n"); \
assert(0
, "vp10_fwd_txfm1d.c: range_check overflow");
\
assert(0
);
\
} \
} \
}
...
...
vp10/common/vp10_inv_txfm1d.c
View file @
ed5a6bd9
...
...
@@ -8,6 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include <stdlib.h>
#include "vp10/common/vp10_inv_txfm1d.h"
#if CONFIG_COEFFICIENT_RANGE_CHECKING
#define range_check(stage, input, buf, size, bit) \
...
...
@@ -24,7 +25,7 @@
printf("%d,", input[j]); \
} \
printf("\n"); \
assert(0
, "vp10_inv_txfm1d.c: range_check overflow");
\
assert(0
);
\
} \
} \
}
...
...
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