forked from len0rd/rockbox
This should fix FS#10917, and also fix channel swapping i introduced in r23784. Lets hope the third time's the charm
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24271 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
cf39c86d3d
commit
135d983433
1 changed files with 3 additions and 3 deletions
|
@ -2091,12 +2091,12 @@ STATICIRAM void to_mono_mm(void)
|
|||
* |mmmmmmmmmmmmmmmm|mmmmmmmmmmmmmmmm|
|
||||
*/
|
||||
uint16_t *samp = &mfbuf[2*512];
|
||||
uint16_t *samp_end = samp + samp_per_frame;
|
||||
uint16_t *samp_end = samp + 2*samp_per_frame;
|
||||
|
||||
inline void to_mono(uint16_t **samp)
|
||||
{
|
||||
int16_t l = **samp;
|
||||
int16_t r = **(samp+1);
|
||||
int16_t r = **samp;
|
||||
int16_t l = *(*samp+1);
|
||||
int32_t m;
|
||||
|
||||
switch(cfg.rec_mono_mode)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue