mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
aacdec_fixed: Make exp2tab static const
This commit is contained in:
parent
8d9fe002b3
commit
1597dba86a
@ -101,7 +101,7 @@ static av_always_inline void reset_predict_state(PredictorState *ps)
|
||||
ps->var1.exp = 1;
|
||||
}
|
||||
|
||||
int exp2tab[4] = { Q31(1.0000000000/2), Q31(1.1892071150/2), Q31(1.4142135624/2), Q31(1.6817928305/2) }; // 2^0, 2^0.25, 2^0.5, 2^0.75
|
||||
static const int exp2tab[4] = { Q31(1.0000000000/2), Q31(1.1892071150/2), Q31(1.4142135624/2), Q31(1.6817928305/2) }; // 2^0, 2^0.25, 2^0.5, 2^0.75
|
||||
|
||||
static inline int *DEC_SPAIR(int *dst, unsigned idx)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user