summaryrefslogtreecommitdiff
path: root/src/codecs/opus.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/codecs/opus.cpp')
-rw-r--r--src/codecs/opus.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/codecs/opus.cpp b/src/codecs/opus.cpp
index c0727c6b..f5ff471a 100644
--- a/src/codecs/opus.cpp
+++ b/src/codecs/opus.cpp
@@ -122,9 +122,24 @@ auto XiphOpusDecoder::OpenStream(std::shared_ptr<IStream> input)
return cpp::fail(Error::kMalformedData);
}
+ auto l = op_pcm_total(opus_, -1);
+ std::optional<uint32_t> length;
+ if (l > 0) {
+ // Output is always downmixed to two channels, but the pcm count does not
+ // reflect this.
+ int channels = op_channel_count(opus_, -1);
+ if (channels == 1) {
+ l *= 2;
+ } else if (channels > 2) {
+ l /= channels * 2;
+ }
+ length = l;
+ }
+
return OutputFormat{
.num_channels = 2,
.sample_rate_hz = 48000,
+ .total_samples = length,
};
}