Skip to content

Commit

Permalink
enabled WB encoding below 9kb/s again
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Buethe committed Dec 20, 2023
1 parent 289fcab commit fe3684b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/opus_encoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,13 @@ struct OpusEncoder {
middle (memoriless) threshold. The second column is the hysteresis
(difference with the middle) */
static const opus_int32 mono_voice_bandwidth_thresholds[8] = {
#ifdef ENABLE_OSCE
1000, 700, /* NB<->MB */
1000, 700, /* MB<->WB */
#else
9000, 700, /* NB<->MB */
9000, 700, /* MB<->WB */
#endif
13500, 1000, /* WB<->SWB */
14000, 2000, /* SWB<->FB */
};
Expand Down

0 comments on commit fe3684b

Please sign in to comment.