diff options
author | Chris Robinson <[email protected]> | 2020-09-22 11:36:43 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-09-22 11:36:43 -0700 |
commit | 04fd50bcdf322e23c8e402e1fe74a5e2436f4388 (patch) | |
tree | dc9b513b491b0dd6b4de6634191b8c9da7417e24 /examples/alstreamcb.cpp | |
parent | d2970443dde92a85237574abaa7e318785d2db97 (diff) |
Support B-Format sounds in the examples
Diffstat (limited to 'examples/alstreamcb.cpp')
-rw-r--r-- | examples/alstreamcb.cpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/examples/alstreamcb.cpp b/examples/alstreamcb.cpp index 8fb1f102..814e2214 100644 --- a/examples/alstreamcb.cpp +++ b/examples/alstreamcb.cpp @@ -40,6 +40,7 @@ #include "AL/al.h" #include "AL/alc.h" +#include "AL/alext.h" #include "common/alhelpers.h" @@ -132,7 +133,17 @@ struct StreamPlayer { mFormat = AL_FORMAT_MONO16; else if(mSfInfo.channels == 2) mFormat = AL_FORMAT_STEREO16; - else + else if(mSfInfo.channels == 3) + { + if(sf_command(mSndfile, SFC_WAVEX_GET_AMBISONIC, NULL, 0) == SF_AMBISONIC_B_FORMAT) + mFormat = AL_FORMAT_BFORMAT2D_16; + } + else if(mSfInfo.channels == 4) + { + if(sf_command(mSndfile, SFC_WAVEX_GET_AMBISONIC, NULL, 0) == SF_AMBISONIC_B_FORMAT) + mFormat = AL_FORMAT_BFORMAT3D_16; + } + if(!mFormat) { fprintf(stderr, "Unsupported channel count: %d\n", mSfInfo.channels); sf_close(mSndfile); |