aboutsummaryrefslogtreecommitdiff
path: root/src/conversation
diff options
context:
space:
mode:
Diffstat (limited to 'src/conversation')
-rw-r--r--src/conversation/gnunet-helper-audio-record.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conversation/gnunet-helper-audio-record.c b/src/conversation/gnunet-helper-audio-record.c
index e948c06fa..ae769bf7c 100644
--- a/src/conversation/gnunet-helper-audio-record.c
+++ b/src/conversation/gnunet-helper-audio-record.c
@@ -114,7 +114,7 @@
114 * OPUS_SIGNAL_VOICE - Bias thresholds towards choosing LPC or Hybrid modes. 114 * OPUS_SIGNAL_VOICE - Bias thresholds towards choosing LPC or Hybrid modes.
115 * OPUS_SIGNAL_MUSIC - Bias thresholds towards choosing MDCT modes. 115 * OPUS_SIGNAL_MUSIC - Bias thresholds towards choosing MDCT modes.
116 */ 116 */
117#define CONV_OPUS_SIGNAL OPUS_AUTO 117#define CONV_OPUS_SIGNAL OPUS_SIGNAL_VOICE
118 118
119/** 119/**
120 * Coding mode. 120 * Coding mode.
@@ -656,7 +656,7 @@ opus_init ()
656 opus_encoder_ctl (enc, 656 opus_encoder_ctl (enc,
657 OPUS_SET_INBAND_FEC (CONV_OPUS_INBAND_FEC)); 657 OPUS_SET_INBAND_FEC (CONV_OPUS_INBAND_FEC));
658 opus_encoder_ctl (enc, 658 opus_encoder_ctl (enc,
659 OPUS_SET_SIGNAL (OPUS_SIGNAL_VOICE)); 659 OPUS_SET_SIGNAL (CONV_OPUS_SIGNAL));
660} 660}
661 661
662static void 662static void