Skip to content

Commit

Permalink
Audio: MFCC: Remove unnecessary space from HiFi4 code
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
singalsu authored and kv2019i committed Sep 2, 2024
1 parent c232feb commit e1e26b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/audio/mfcc/mfcc_hifi4.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ void mfcc_apply_window(struct mfcc_state *state, int input_shift)
AE_L16_XP(win, win_in, win_inc);
temp = AE_MULF16SS_00(sample, win);
temp = AE_SLAA32S(temp, input_shift);
sample = AE_ROUND16X4F32SASYM(temp, temp);
sample = AE_ROUND16X4F32SASYM(temp, temp);
AE_S16_0_XP(sample, fft_in, fft_inc);
}
#else
Expand Down

0 comments on commit e1e26b5

Please sign in to comment.