@@ -107,26 +107,26 @@ static inline void sbc_analyze_4b_4s_simd(SBCDSPContext *s,
107
107
int16_t * x , int32_t * out , int out_stride )
108
108
{
109
109
/* Analyze blocks */
110
- s -> sbc_analyze_4 (x + 12 , out , ff_sbcdsp_analysis_consts_fixed4_simd_odd );
110
+ s -> sbc_analyze_4 (x + 12 , out , sbcdsp_analysis_consts_fixed4_simd_odd );
111
111
out += out_stride ;
112
- s -> sbc_analyze_4 (x + 8 , out , ff_sbcdsp_analysis_consts_fixed4_simd_even );
112
+ s -> sbc_analyze_4 (x + 8 , out , sbcdsp_analysis_consts_fixed4_simd_even );
113
113
out += out_stride ;
114
- s -> sbc_analyze_4 (x + 4 , out , ff_sbcdsp_analysis_consts_fixed4_simd_odd );
114
+ s -> sbc_analyze_4 (x + 4 , out , sbcdsp_analysis_consts_fixed4_simd_odd );
115
115
out += out_stride ;
116
- s -> sbc_analyze_4 (x + 0 , out , ff_sbcdsp_analysis_consts_fixed4_simd_even );
116
+ s -> sbc_analyze_4 (x + 0 , out , sbcdsp_analysis_consts_fixed4_simd_even );
117
117
}
118
118
119
119
static inline void sbc_analyze_4b_8s_simd (SBCDSPContext * s ,
120
120
int16_t * x , int32_t * out , int out_stride )
121
121
{
122
122
/* Analyze blocks */
123
- s -> sbc_analyze_8 (x + 24 , out , ff_sbcdsp_analysis_consts_fixed8_simd_odd );
123
+ s -> sbc_analyze_8 (x + 24 , out , sbcdsp_analysis_consts_fixed8_simd_odd );
124
124
out += out_stride ;
125
- s -> sbc_analyze_8 (x + 16 , out , ff_sbcdsp_analysis_consts_fixed8_simd_even );
125
+ s -> sbc_analyze_8 (x + 16 , out , sbcdsp_analysis_consts_fixed8_simd_even );
126
126
out += out_stride ;
127
- s -> sbc_analyze_8 (x + 8 , out , ff_sbcdsp_analysis_consts_fixed8_simd_odd );
127
+ s -> sbc_analyze_8 (x + 8 , out , sbcdsp_analysis_consts_fixed8_simd_odd );
128
128
out += out_stride ;
129
- s -> sbc_analyze_8 (x + 0 , out , ff_sbcdsp_analysis_consts_fixed8_simd_even );
129
+ s -> sbc_analyze_8 (x + 0 , out , sbcdsp_analysis_consts_fixed8_simd_even );
130
130
}
131
131
132
132
static inline void sbc_analyze_1b_8s_simd_even (SBCDSPContext * s ,
@@ -137,15 +137,15 @@ static inline void sbc_analyze_1b_8s_simd_odd(SBCDSPContext *s,
137
137
int16_t * x , int32_t * out ,
138
138
int out_stride )
139
139
{
140
- s -> sbc_analyze_8 (x , out , ff_sbcdsp_analysis_consts_fixed8_simd_odd );
140
+ s -> sbc_analyze_8 (x , out , sbcdsp_analysis_consts_fixed8_simd_odd );
141
141
s -> sbc_analyze_8s = sbc_analyze_1b_8s_simd_even ;
142
142
}
143
143
144
144
static inline void sbc_analyze_1b_8s_simd_even (SBCDSPContext * s ,
145
145
int16_t * x , int32_t * out ,
146
146
int out_stride )
147
147
{
148
- s -> sbc_analyze_8 (x , out , ff_sbcdsp_analysis_consts_fixed8_simd_even );
148
+ s -> sbc_analyze_8 (x , out , sbcdsp_analysis_consts_fixed8_simd_even );
149
149
s -> sbc_analyze_8s = sbc_analyze_1b_8s_simd_odd ;
150
150
}
151
151
0 commit comments