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
This commit is contained in:
tnakamura@webrtc.org 2012-06-22 16:29:38 +00:00
parent 77e18124f9
commit b9c1833c2c

View File

@ -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");