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

Side by Side Diff: webrtc/modules/audio_coding/neteq/neteq_external_decoder_unittest.cc

Issue 2668523004: Move AudioDecoder and related stuff to the api/ directory (Closed)
Patch Set: more review fixes Created 3 years, 10 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) 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
11 // Test to verify correct operation for externally created decoders. 11 // Test to verify correct operation for externally created decoders.
12 12
13 #include <memory> 13 #include <memory>
14 14
15 #include "webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory.h" 15 #include "webrtc/api/audio_codecs/builtin_audio_decoder_factory.h"
16 #include "webrtc/modules/audio_coding/neteq/mock/mock_external_decoder_pcm16b.h" 16 #include "webrtc/modules/audio_coding/neteq/mock/mock_external_decoder_pcm16b.h"
17 #include "webrtc/modules/audio_coding/neteq/tools/input_audio_file.h" 17 #include "webrtc/modules/audio_coding/neteq/tools/input_audio_file.h"
18 #include "webrtc/modules/audio_coding/neteq/tools/neteq_external_decoder_test.h" 18 #include "webrtc/modules/audio_coding/neteq/tools/neteq_external_decoder_test.h"
19 #include "webrtc/modules/audio_coding/neteq/tools/rtp_generator.h" 19 #include "webrtc/modules/audio_coding/neteq/tools/rtp_generator.h"
20 #include "webrtc/modules/include/module_common_types.h" 20 #include "webrtc/modules/include/module_common_types.h"
21 #include "webrtc/test/gmock.h" 21 #include "webrtc/test/gmock.h"
22 #include "webrtc/test/testsupport/fileutils.h" 22 #include "webrtc/test/testsupport/fileutils.h"
23 23
24 namespace webrtc { 24 namespace webrtc {
25 25
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 kStartSeqeunceNumber, 445 kStartSeqeunceNumber,
446 kStartTimestamp, 446 kStartTimestamp,
447 kJumpFromTimestamp, 447 kJumpFromTimestamp,
448 kJumpToTimestamp)); 448 kJumpToTimestamp));
449 449
450 RunTest(130); // Run 130 laps @ 10 ms each in the test loop. 450 RunTest(130); // Run 130 laps @ 10 ms each in the test loop.
451 EXPECT_EQ(kRecovered, test_state_); 451 EXPECT_EQ(kRecovered, test_state_);
452 } 452 }
453 453
454 } // namespace webrtc 454 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/neteq/mock/mock_external_decoder_pcm16b.h ('k') | webrtc/modules/audio_coding/neteq/neteq_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698