Fix flac playback issue

Fixed an issue whereby flac files were playing twice as fast.

Signed-off-by: Mahyar Koshkouei <deltabeard@users.noreply.github.com>
This commit is contained in:
Mahyar Koshkouei
2017-01-10 21:11:23 +00:00
parent 5878bd0dcc
commit d2b0ae540a

View File

@@ -64,7 +64,7 @@ uint8_t channelFlac(void)
*/
uint64_t decodeFlac(void* buffer)
{
return drflac_read_s16(pFlac, buffSize, buffer) / pFlac->channels;
return drflac_read_s16(pFlac, buffSize, buffer);
}
/**