summaryrefslogtreecommitdiff
path: root/plugins/vorbis
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2010-11-27 20:08:47 +0100
committerGravatar waker <wakeroid@gmail.com>2010-11-27 20:08:47 +0100
commitc36458a577b7b1276ae93dd5a503a25bfd8783c1 (patch)
treed629bc92c161fadc72b7bd487945814390529b2c /plugins/vorbis
parent073e8ffaf70375a5c47a14799dada1158d3d9ece (diff)
fixed multichannel in vorbis plugin
Diffstat (limited to 'plugins/vorbis')
-rw-r--r--plugins/vorbis/vorbis.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/vorbis/vorbis.c b/plugins/vorbis/vorbis.c
index a3a117a2..0e993d17 100644
--- a/plugins/vorbis/vorbis.c
+++ b/plugins/vorbis/vorbis.c
@@ -231,7 +231,9 @@ cvorbis_init (DB_fileinfo_t *_info, DB_playItem_t *it) {
//_info->dataSize = ov_pcm_total (&vorbis_file, -1) * vi->channels * 2;
_info->fmt.channels = info->vi->channels;
_info->fmt.samplerate = info->vi->rate;
- _info->fmt.channelmask = _info->fmt.channels == 1 ? DDB_SPEAKER_FRONT_LEFT : (DDB_SPEAKER_FRONT_LEFT | DDB_SPEAKER_FRONT_RIGHT);
+ for (int i = 0; i < _info->fmt.channels; i++) {
+ _info->fmt.channelmask |= 1 << i;
+ }
_info->readpos = 0;
info->currentsample = 0;