Adding a duration printout to neteq_rtpplay

BUG=2692
TBR=tina.legrand@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/30339004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@7796 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
henrik.lundin@webrtc.org 2014-12-03 13:28:53 +00:00
parent d8aed6b321
commit fa914e283c

View File

@ -275,6 +275,7 @@ int main(int argc, char* argv[]) {
// This is the main simulation loop.
// Set the simulation clock to start immediately with the first packet.
int start_time_ms = packet->time_ms();
int time_now_ms = packet->time_ms();
int next_input_time_ms = time_now_ms;
int next_output_time_ms = time_now_ms;
@ -380,7 +381,8 @@ int main(int argc, char* argv[]) {
time_now_ms = std::min(next_input_time_ms, next_output_time_ms);
}
std::cout << "Simulation done" << std::endl;
printf("Simulation done\n");
printf("Produced %i ms of audio\n", time_now_ms - start_time_ms);
delete neteq;
webrtc::Trace::ReturnTrace();