mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-09 13:30:03 -05:00
Fixed double increment
This commit is contained in:
parent
06581d6ce6
commit
9059d26167
1 changed files with 1 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ static void resample_expand(snd_pcm_plugin_t *plugin,
|
|||
#include "plugin_ops.h"
|
||||
#undef GET_S16_END
|
||||
|
||||
for (channel = 0; channel < plugin->src_format.channels; channel++, rchannels++) {
|
||||
for (channel = 0; channel < plugin->src_format.channels; channel++) {
|
||||
pos = data->pos;
|
||||
S1 = rchannels->last_S1;
|
||||
S2 = rchannels->last_S2;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue