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
f9856575
Commit
f9856575
authored
Feb 09, 2016
by
Angie Chiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix range_check error in vp10_[fwd/inv]_txfm1d.c
Change-Id: I7a810323fc33fb6d373c3f5bb4d5d0d33170948c
parent
14a7aada
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 @
f9856575
...
...
@@ -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 @
f9856575
...
...
@@ -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