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

Side by Side Diff: webrtc/modules/utility/source/file_player_unittests.cc

Issue 1417683006: modules: more interface -> include renames (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix last incorrectly wrapped pragma message 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) 2014 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2014 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 // Unit tests for FilePlayer. 11 // Unit tests for FilePlayer.
12 12
13 #include "webrtc/modules/utility/interface/file_player.h" 13 #include "webrtc/modules/utility/include/file_player.h"
14 14
15 #include <stdio.h> 15 #include <stdio.h>
16 #include <string> 16 #include <string>
17 17
18 #include "gflags/gflags.h" 18 #include "gflags/gflags.h"
19 #include "testing/gtest/include/gtest/gtest.h" 19 #include "testing/gtest/include/gtest/gtest.h"
20 #include "webrtc/base/md5digest.h" 20 #include "webrtc/base/md5digest.h"
21 #include "webrtc/base/stringencode.h" 21 #include "webrtc/base/stringencode.h"
22 #include "webrtc/test/testsupport/fileutils.h" 22 #include "webrtc/test/testsupport/fileutils.h"
23 #include "webrtc/test/testsupport/gtest_disable.h" 23 #include "webrtc/test/testsupport/gtest_disable.h"
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 test::ResourcePath("utility/encapsulated_pcm16b_8khz", "wav"); 98 test::ResourcePath("utility/encapsulated_pcm16b_8khz", "wav");
99 // The file is longer than this, but keeping the output shorter limits the 99 // The file is longer than this, but keeping the output shorter limits the
100 // runtime for the test. 100 // runtime for the test.
101 const int kOutputLengthMs = 10000; 101 const int kOutputLengthMs = 10000;
102 const std::string kRefChecksum = "e41d7e1dac8aeae9f21e8e03cd7ecd71"; 102 const std::string kRefChecksum = "e41d7e1dac8aeae9f21e8e03cd7ecd71";
103 103
104 PlayFileAndCheck(kFileName, kRefChecksum, kOutputLengthMs); 104 PlayFileAndCheck(kFileName, kRefChecksum, kOutputLengthMs);
105 } 105 }
106 106
107 } // namespace webrtc 107 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/utility/source/file_player_impl.h ('k') | webrtc/modules/utility/source/file_recorder_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698