forked from len0rd/rockbox
mp3 encoder (codec): left and right channels were inverted in mono
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27219 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
ffe8ceccf3
commit
a64fa107d1
1 changed files with 2 additions and 2 deletions
|
@ -2093,8 +2093,8 @@ STATICIRAM void to_mono_mm(void)
|
|||
|
||||
inline void to_mono(uint16_t **samp)
|
||||
{
|
||||
int16_t r = **samp;
|
||||
int16_t l = *(*samp+1);
|
||||
int16_t l = **samp;
|
||||
int16_t r = *(*samp+1);
|
||||
int32_t m;
|
||||
|
||||
switch(cfg.rec_mono_mode)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue