ref: dd6d6d523b4e7e51f2cfee725caf41cedeba1af2
parent: 6adfa708a0ecf8fdd83fe8da3322dc80e6dfb74e
author: Jean-Marc Valin <[email protected]>
date: Sat Jul 28 09:50:45 EDT 2018
Fixing arithmetic problems for 16-bit CPUs in ambisonics_rate_allocation()
--- a/src/opus_multistream_encoder.c
+++ b/src/opus_multistream_encoder.c
@@ -741,10 +741,10 @@
)
{
int i;
- int total_rate;
- int directional_rate;
- int nondirectional_rate;
- int leftover_bits;
+ opus_int32 total_rate;
+ opus_int32 directional_rate;
+ opus_int32 nondirectional_rate;
+ opus_int32 leftover_bits;
/* Each nondirectional channel gets (rate_ratio_num / rate_ratio_den) times
* as many bits as all other ambisonics channels.
@@ -760,7 +760,7 @@
if (st->bitrate_bps==OPUS_AUTO)
{
total_rate = (st->layout.nb_coupled_streams + st->layout.nb_streams) *
- (Fs+60*Fs/frame_size) + st->layout.nb_streams * 15000;
+ (Fs+60*Fs/frame_size) + st->layout.nb_streams * (opus_int32)15000;
} else if (st->bitrate_bps==OPUS_BITRATE_MAX)
{
total_rate = nb_channels * 320000;