pub fn open_wav_demuxer(input: Box<dyn ReadSeek>) -> Result<WavDemuxer>Expand description
Open a WAV/RF64/BW64 demuxer returning the concrete WavDemuxer
so the typed accessor surface (WavDemuxer::format_tag,
WavDemuxer::channel_mask, WavDemuxer::acid, …) is reachable
without downcasting. The registry path wraps this in a
Box<dyn Demuxer>.