Add VPX_SWAP macro
Change-Id: I60e233eddef238ad918183392794084673f27d2d
This commit is contained in:
Родитель
1c1bc94899
Коммит
a8de3c0c89
|
@ -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.
|
||||
|
|
Загрузка…
Ссылка в новой задаче