From b9c1833c2cd1924db38a867ba652a834922fdb4a Mon Sep 17 00:00:00 2001 From: "tnakamura@webrtc.org" Date: Fri, 22 Jun 2012 16:29:38 +0000 Subject: [PATCH] Add channel info to the Actions->Codec Changes menu in the VoE test app. Review URL: https://webrtc-codereview.appspot.com/665005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@2438 4adac7df-926f-26a2-2b94-8c16560cd09d --- src/voice_engine/main/test/cmd_test/voe_cmd_test.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/voice_engine/main/test/cmd_test/voe_cmd_test.cc b/src/voice_engine/main/test/cmd_test/voe_cmd_test.cc index e296fc642d..87530026cb 100644 --- a/src/voice_engine/main/test/cmd_test/voe_cmd_test.cc +++ b/src/voice_engine/main/test/cmd_test/voe_cmd_test.cc @@ -476,12 +476,12 @@ void RunTest(std::string out_path) { VALIDATE; if (strncmp(cinst.plname, "ISAC", 4) == 0 && cinst.plfreq == 32000) { - printf("\t%i. ISAC-swb pltype:%i plfreq:%i\n", i, - cinst.pltype, cinst.plfreq); + printf("\t%i. ISAC-swb pltype:%i plfreq:%i channels:%i\n", i, + cinst.pltype, cinst.plfreq, cinst.channels); } else { - printf("\t%i. %s pltype:%i plfreq:%i\n", i, cinst.plname, - cinst.pltype, cinst.plfreq); + printf("\t%i. %s pltype:%i plfreq:%i channels:%i\n", i, cinst.plname, + cinst.pltype, cinst.plfreq, cinst.channels); } } printf("Other\n");