Correct decorrelation within flac decoding. Finally fixes FS#12371.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31252 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
d985d65907
commit
6b45019077
1 changed files with 1 additions and 1 deletions
|
@ -530,7 +530,7 @@ int flac_decode_frame(FLACContext *s,
|
|||
DECORRELATE(a, a-b)
|
||||
break;
|
||||
case RIGHT_SIDE:
|
||||
DECORRELATE(a+b, a)
|
||||
DECORRELATE(a+b, b)
|
||||
break;
|
||||
case MID_SIDE:
|
||||
DECORRELATE( (a-=b>>1) + b, a)
|
||||
|
|
Loading…
Reference in a new issue