Skip to content

Commit

Permalink
fixed interpolation of 8-bit PCM data
Browse files Browse the repository at this point in the history
  • Loading branch information
inolen committed Apr 19, 2017
1 parent 472b4f7 commit 1ba84de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hw/aica/aica.c
Expand Up @@ -339,7 +339,7 @@ static int32_t aica_channel_update(struct aica *aica, struct aica_channel *ch) {
case 1: {
int8_t *samples = (int8_t *)ch->base;
prev = samples[pos] << 8;
next = samples[pos] << 8;
next = samples[pos + 1] << 8;
} break;

default:
Expand Down

0 comments on commit 1ba84de

Please sign in to comment.