1 --- a/libavcodec/aaccoder.c
2 +++ b/libavcodec/aaccoder.c
4 * replace low energy non zero bands */
5 #define NOISE_LAMBDA_REPLACE 1.948f
9 #include "libavcodec/aaccoder_trellis.h"
11 typedef float (*quantize_and_encode_band_func)(struct AACEncContext *s, PutBitContext *pb,
13 --- a/libavcodec/hevc_mvs.c
14 +++ b/libavcodec/hevc_mvs.c
17 #include "threadframe.h"
21 static const uint8_t l0_l1_cand_idx[12][2] = {
24 --- a/libavcodec/opus_pvq.c
25 +++ b/libavcodec/opus_pvq.c
27 #define CELT_PVQ_U(n, k) (ff_celt_pvq_u_row[FFMIN(n, k)][FFMAX(n, k)])
28 #define CELT_PVQ_V(n, k) (CELT_PVQ_U(n, k) + CELT_PVQ_U(n, (k) + 1))
32 static inline int16_t celt_cos(int16_t x)
34 x = (MUL16(x, x) + 4096) >> 13;