Fix Vorbis playback

Tested with a stereo OGG Vorbis file only.

Signed-off-by: Mahyar Koshkouei <mk@deltabeard.com>
This commit is contained in:
Mahyar Koshkouei
2017-07-08 13:17:27 +01:00
parent 4c2d8586bf
commit 808ae2cc91
6 changed files with 32 additions and 20 deletions

View File

@@ -26,6 +26,10 @@ char* ctrmus_strerror(int err)
error = "File type is not supported";
break;
case UNSUPPORTED_CHANNELS:
error = "Unsupported number of channels";
break;
default:
error = strerror(err);
break;