Merge "Add VPX_SWAP macro" into nextgenv2

This commit is contained in:
Yaowu Xu 2016-07-26 17:21:22 +00:00 коммит произвёл Gerrit Code Review
Родитель abb842d45c a8de3c0c89
Коммит 8e3766f967
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -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.