Skip to content
GitLab
Menu
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
a8de3c0c
Commit
a8de3c0c
authored
Jul 15, 2016
by
Yury Gitman
Committed by
Yaowu Xu
Jul 26, 2016
Browse files
Add VPX_SWAP macro
Change-Id: I60e233eddef238ad918183392794084673f27d2d
parent
1c1bc948
Changes
1
Hide whitespace changes
Inline
Side-by-side
vpx_dsp/vpx_dsp_common.h
View file @
a8de3c0c
...
...
@@ -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
.
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