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

Side by Side Diff: webrtc/modules/audio_coding/neteq/tools/neteq_rtpplay.cc

Issue 1413333002: system_wrappers: rename interface -> include (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased again! Created 5 years, 1 month 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 17 matching lines...) Expand all
28 #include "webrtc/base/scoped_ptr.h" 28 #include "webrtc/base/scoped_ptr.h"
29 #include "webrtc/modules/audio_coding/codecs/pcm16b/include/pcm16b.h" 29 #include "webrtc/modules/audio_coding/codecs/pcm16b/include/pcm16b.h"
30 #include "webrtc/modules/audio_coding/neteq/interface/neteq.h" 30 #include "webrtc/modules/audio_coding/neteq/interface/neteq.h"
31 #include "webrtc/modules/audio_coding/neteq/tools/input_audio_file.h" 31 #include "webrtc/modules/audio_coding/neteq/tools/input_audio_file.h"
32 #include "webrtc/modules/audio_coding/neteq/tools/output_audio_file.h" 32 #include "webrtc/modules/audio_coding/neteq/tools/output_audio_file.h"
33 #include "webrtc/modules/audio_coding/neteq/tools/output_wav_file.h" 33 #include "webrtc/modules/audio_coding/neteq/tools/output_wav_file.h"
34 #include "webrtc/modules/audio_coding/neteq/tools/packet.h" 34 #include "webrtc/modules/audio_coding/neteq/tools/packet.h"
35 #include "webrtc/modules/audio_coding/neteq/tools/rtc_event_log_source.h" 35 #include "webrtc/modules/audio_coding/neteq/tools/rtc_event_log_source.h"
36 #include "webrtc/modules/audio_coding/neteq/tools/rtp_file_source.h" 36 #include "webrtc/modules/audio_coding/neteq/tools/rtp_file_source.h"
37 #include "webrtc/modules/interface/module_common_types.h" 37 #include "webrtc/modules/interface/module_common_types.h"
38 #include "webrtc/system_wrappers/interface/trace.h" 38 #include "webrtc/system_wrappers/include/trace.h"
39 #include "webrtc/test/rtp_file_reader.h" 39 #include "webrtc/test/rtp_file_reader.h"
40 #include "webrtc/test/testsupport/fileutils.h" 40 #include "webrtc/test/testsupport/fileutils.h"
41 #include "webrtc/typedefs.h" 41 #include "webrtc/typedefs.h"
42 42
43 using webrtc::NetEq; 43 using webrtc::NetEq;
44 using webrtc::WebRtcRTPHeader; 44 using webrtc::WebRtcRTPHeader;
45 45
46 namespace { 46 namespace {
47 47
48 // Parses the input string for a valid SSRC (at the start of the string). If a 48 // Parses the input string for a valid SSRC (at the start of the string). If a
(...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after
632 } 632 }
633 } 633 }
634 printf("Simulation done\n"); 634 printf("Simulation done\n");
635 printf("Produced %i ms of audio\n", 635 printf("Produced %i ms of audio\n",
636 static_cast<int>(time_now_ms - start_time_ms)); 636 static_cast<int>(time_now_ms - start_time_ms));
637 637
638 delete neteq; 638 delete neteq;
639 webrtc::Trace::ReturnTrace(); 639 webrtc::Trace::ReturnTrace();
640 return 0; 640 return 0;
641 } 641 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698