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

Side by Side Diff: webrtc/modules/audio_coding/test/TestRedFec.cc

Issue 2553583002: Delete voice_engine_configurations.h (Closed)
Patch Set: Rebase Created 4 years 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) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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
11 #include "webrtc/modules/audio_coding/test/TestRedFec.h" 11 #include "webrtc/modules/audio_coding/test/TestRedFec.h"
12 12
13 #include <assert.h> 13 #include <assert.h>
14 14
15 #include "webrtc/common_types.h" 15 #include "webrtc/common_types.h"
16 #include "webrtc/modules/audio_coding/codecs/audio_format_conversion.h" 16 #include "webrtc/modules/audio_coding/codecs/audio_format_conversion.h"
17 #include "webrtc/modules/audio_coding/include/audio_coding_module_typedefs.h" 17 #include "webrtc/modules/audio_coding/include/audio_coding_module_typedefs.h"
18 #include "webrtc/modules/audio_coding/test/utility.h" 18 #include "webrtc/modules/audio_coding/test/utility.h"
19 #include "webrtc/system_wrappers/include/trace.h" 19 #include "webrtc/system_wrappers/include/trace.h"
20 #include "webrtc/test/testsupport/fileutils.h" 20 #include "webrtc/test/testsupport/fileutils.h"
21 #include "webrtc/voice_engine_configurations.h" 21 #include "webrtc/typedefs.h"
22 22
23 #ifdef SUPPORT_RED_WB 23 #ifdef SUPPORT_RED_WB
24 #undef SUPPORT_RED_WB 24 #undef SUPPORT_RED_WB
25 #endif 25 #endif
26 26
27 #ifdef SUPPORT_RED_SWB 27 #ifdef SUPPORT_RED_SWB
28 #undef SUPPORT_RED_SWB 28 #undef SUPPORT_RED_SWB
29 #endif 29 #endif
30 30
31 #ifdef SUPPORT_RED_FB 31 #ifdef SUPPORT_RED_FB
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 std::string file_name; 474 std::string file_name;
475 std::stringstream file_stream; 475 std::stringstream file_stream;
476 file_stream << webrtc::test::OutputPath(); 476 file_stream << webrtc::test::OutputPath();
477 file_stream << "TestRedFec_outFile_"; 477 file_stream << "TestRedFec_outFile_";
478 file_stream << test_number << ".pcm"; 478 file_stream << test_number << ".pcm";
479 file_name = file_stream.str(); 479 file_name = file_stream.str();
480 _outFileB.Open(file_name, 16000, "wb"); 480 _outFileB.Open(file_name, 16000, "wb");
481 } 481 }
482 482
483 } // namespace webrtc 483 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/test/TestAllCodecs.cc ('k') | webrtc/modules/audio_coding/test/TestStereo.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698