Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
8e3766f9
Commit
8e3766f9
authored
Jul 26, 2016
by
Yaowu Xu
Committed by
Gerrit Code Review
Jul 26, 2016
Browse files
Merge "Add VPX_SWAP macro" into nextgenv2
parents
abb842d4
a8de3c0c
Changes
1
Hide whitespace changes
Inline
Side-by-side
vpx_dsp/vpx_dsp_common.h
View file @
8e3766f9
...
...
@@ -46,6 +46,13 @@ extern "C" {
# define UNLIKELY(v) (v)
#endif
#define VPX_SWAP(type, a, b) \
do { \
type c = (b); \
b = a; \
a = c; \
} while (0)
#if CONFIG_VP9_HIGHBITDEPTH
// Note:
// tran_low_t is the datatype used for final transform coefficients.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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