Commit de5543d8 authored by Shiyou Yin's avatar Shiyou Yin Committed by Michael Niedermayer

avcodec/mips: Fix a warnning of indentation not reflect the block structure.

The indentation of code dose not reflect the if block structure in
'apply_ltp_mips', and this will generate a warnning when build with
'-Wall' or '-Wmisleading-indentation'.
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent cae5b36e
...@@ -237,9 +237,9 @@ static void apply_ltp_mips(AACContext *ac, SingleChannelElement *sce) ...@@ -237,9 +237,9 @@ static void apply_ltp_mips(AACContext *ac, SingleChannelElement *sce)
if (ltp->lag < 1024) if (ltp->lag < 1024)
num_samples = ltp->lag + 1024; num_samples = ltp->lag + 1024;
j = (2048 - num_samples) >> 2; j = (2048 - num_samples) >> 2;
k = (2048 - num_samples) & 3; k = (2048 - num_samples) & 3;
p_predTime = &predTime[num_samples]; p_predTime = &predTime[num_samples];
for (i = 0; i < num_samples; i++) for (i = 0; i < num_samples; i++)
predTime[i] = sce->ltp_state[i + 2048 - ltp->lag] * ltp->coef; predTime[i] = sce->ltp_state[i + 2048 - ltp->lag] * ltp->coef;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment