Change-Id: I60e233eddef238ad918183392794084673f27d2d
This commit is contained in:
Yury Gitman 2016-07-15 10:32:04 -07:00 коммит произвёл Yaowu Xu
Родитель 1c1bc94899
Коммит a8de3c0c89
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.