#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. // tran_high_t is the datatype used for intermediate transform stages. typedef int64_t tran_high_t; typedef int32_t tran_low_t; #else // Note: // tran_low_t is the datatype used for final transform coefficients. // tran_high_t is the datatype used for intermediate transform stages. typedef int32_t tran_high_t; typedef int16_t tran_low_t; #endif// CONFIG_VP9_HIGHBITDEPTH
// Returns the saturating cast of a double value to int. staticINLINEint saturate_cast_double_to_int(double d) { if (d > INT_MAX) return INT_MAX; return (int)d;
}
#ifdef __cplusplus
} // extern "C" #endif
#endif// VPX_VPX_DSP_VPX_DSP_COMMON_H_
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.13 Sekunden
(vorverarbeitet am 2026-08-26)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.