hi all,

is sound with more than 2 channels
( aka stereo ) supported?

---------------------------------------

Decoder.cpp says:
omnividea::fobs::uint Decoder::getAudioChannelNumber()
1529 {
1530   uint res = 0;
1531   if(isAudioPresent())
1532   {
1533     res = inputFile->streams[audioStreamIndex]->codec->channels;
1534   }
1535   return res > 2?2:res;
1536 }

----------------------------------------

... channels seem to be limited
to two - why this?

with the best regards,
hendrik