Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(272)

Unified Diff: webrtc/modules/audio_coding/main/acm2/acm_receive_test_oldapi.cc

Issue 1404623002: Delete iSAC-fb from AudioCodingModule (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_coding/main/acm2/acm_receive_test_oldapi.cc
diff --git a/webrtc/modules/audio_coding/main/acm2/acm_receive_test_oldapi.cc b/webrtc/modules/audio_coding/main/acm2/acm_receive_test_oldapi.cc
index 2a0bbe15d4b193a3ea951acdaff7e252a4351213..e73be5c2ba3ceb4d3abdc2d3e07487153a6fad9f 100644
--- a/webrtc/modules/audio_coding/main/acm2/acm_receive_test_oldapi.cc
+++ b/webrtc/modules/audio_coding/main/acm2/acm_receive_test_oldapi.cc
@@ -47,7 +47,6 @@ bool ModifyAndUseThisCodec(CodecInst* codec_param) {
// iLBC = 102
// iSAC wideband = 103
// iSAC super-wideband = 104
-// iSAC fullband = 124
// AVT/DTMF = 106
// RED = 117
// PCM16b 8 kHz = 93
@@ -78,8 +77,6 @@ bool RemapPltypeAndUseThisCodec(const char* plname,
*pltype = 103;
} else if (STR_CASE_CMP(plname, "ISAC") == 0 && plfreq == 32000) {
*pltype = 104;
- } else if (STR_CASE_CMP(plname, "ISAC") == 0 && plfreq == 48000) {
- *pltype = 124;
} else if (STR_CASE_CMP(plname, "telephone-event") == 0) {
*pltype = 106;
} else if (STR_CASE_CMP(plname, "red") == 0) {

Powered by Google App Engine
This is Rietveld 408576698