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

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

Issue 2401673002: Delete old video defines in engine config and rename file (Closed)
Patch Set: And GYP Created 4 years, 2 months 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/engine_configurations.h"
17 #include "webrtc/modules/audio_coding/include/audio_coding_module_typedefs.h" 16 #include "webrtc/modules/audio_coding/include/audio_coding_module_typedefs.h"
18 #include "webrtc/modules/audio_coding/test/utility.h" 17 #include "webrtc/modules/audio_coding/test/utility.h"
19 #include "webrtc/system_wrappers/include/trace.h" 18 #include "webrtc/system_wrappers/include/trace.h"
20 #include "webrtc/test/testsupport/fileutils.h" 19 #include "webrtc/test/testsupport/fileutils.h"
20 #include "webrtc/voice_engine_configurations.h"
21 21
22 #ifdef SUPPORT_RED_WB 22 #ifdef SUPPORT_RED_WB
23 #undef SUPPORT_RED_WB 23 #undef SUPPORT_RED_WB
24 #endif 24 #endif
25 25
26 #ifdef SUPPORT_RED_SWB 26 #ifdef SUPPORT_RED_SWB
27 #undef SUPPORT_RED_SWB 27 #undef SUPPORT_RED_SWB
28 #endif 28 #endif
29 29
30 #ifdef SUPPORT_RED_FB 30 #ifdef SUPPORT_RED_FB
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 std::string file_name; 472 std::string file_name;
473 std::stringstream file_stream; 473 std::stringstream file_stream;
474 file_stream << webrtc::test::OutputPath(); 474 file_stream << webrtc::test::OutputPath();
475 file_stream << "TestRedFec_outFile_"; 475 file_stream << "TestRedFec_outFile_";
476 file_stream << test_number << ".pcm"; 476 file_stream << test_number << ".pcm";
477 file_name = file_stream.str(); 477 file_name = file_stream.str();
478 _outFileB.Open(file_name, 16000, "wb"); 478 _outFileB.Open(file_name, 16000, "wb");
479 } 479 }
480 480
481 } // namespace webrtc 481 } // 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