forked from len0rd/rockbox
Remove a call to av_clip() which limits the PCM output of the decoder to 16-bit.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21911 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
23cf0977cd
commit
20f8666b89
1 changed files with 1 additions and 2 deletions
|
|
@ -291,7 +291,6 @@ static inline void output_math(COOKContext *q, int16_t *out, int chan)
|
|||
int j;
|
||||
|
||||
for (j = 0; j < q->samples_per_channel; j++) {
|
||||
out[chan + q->nb_channels * j] =
|
||||
av_clip(fixp_pow2(q->mono_mdct_output[j], -11), -32768, 32767);
|
||||
out[chan + q->nb_channels * j] = fixp_pow2(q->mono_mdct_output[j], -11);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue