aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/gnunet-helper-audio-record.c
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2015-06-03 14:57:51 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2015-06-03 14:57:51 +0000
commitb2657fec775658d10b60dd59f776b9f8f3d5da48 (patch)
tree7a6fb45e3aba5151b4d35d5b659ce750e7c70aa4 /src/conversation/gnunet-helper-audio-record.c
parent454af43716f605bbf0415f9cbeb6323c788ff6b2 (diff)
downloadgnunet-b2657fec775658d10b60dd59f776b9f8f3d5da48.tar.gz
gnunet-b2657fec775658d10b60dd59f776b9f8f3d5da48.zip
-use defined name
Diffstat (limited to 'src/conversation/gnunet-helper-audio-record.c')
-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