Skip to content

Commit

Permalink
VIDEO: Set stereo as bool instead of writing channel amount directly
Browse files Browse the repository at this point in the history
  • Loading branch information
somaen committed Aug 11, 2013
1 parent 4f360a7 commit 6454721
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion video/theora_decoder.cpp
Expand Up @@ -335,7 +335,7 @@ TheoraDecoder::VorbisAudioTrack::VorbisAudioTrack(Audio::Mixer::SoundType soundT
vorbis_block_init(&_vorbisDSP, &_vorbisBlock);
info = &vorbisInfo;

_audStream = Audio::makeQueuingAudioStream(vorbisInfo.rate, vorbisInfo.channels);
_audStream = Audio::makeQueuingAudioStream(vorbisInfo.rate, vorbisInfo.channels != 1);

_audioBufferFill = 0;
_audioBuffer = 0;
Expand Down

0 comments on commit 6454721

Please sign in to comment.