Skip to content

Commit e1e26b5

Browse files
singalsukv2019i
authored andcommitted
Audio: MFCC: Remove unnecessary space from HiFi4 code
Only cosmetic change, no functionality changed. Noticed while comparing hifi3 and hifi4 code versions. Now one difference less. Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
1 parent c232feb commit e1e26b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/audio/mfcc/mfcc_hifi4.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ void mfcc_apply_window(struct mfcc_state *state, int input_shift)
205205
AE_L16_XP(win, win_in, win_inc);
206206
temp = AE_MULF16SS_00(sample, win);
207207
temp = AE_SLAA32S(temp, input_shift);
208-
sample = AE_ROUND16X4F32SASYM(temp, temp);
208+
sample = AE_ROUND16X4F32SASYM(temp, temp);
209209
AE_S16_0_XP(sample, fft_in, fft_inc);
210210
}
211211
#else

0 commit comments

Comments
 (0)