| OLD | NEW |
| 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/neteq/timestamp_scaler.h" | 11 #include "webrtc/api/audio_codecs/builtin_audio_decoder_factory.h" |
| 12 | |
| 13 #include "webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory.h" | |
| 14 #include "webrtc/modules/audio_coding/neteq/mock/mock_decoder_database.h" | 12 #include "webrtc/modules/audio_coding/neteq/mock/mock_decoder_database.h" |
| 15 #include "webrtc/modules/audio_coding/neteq/packet.h" | 13 #include "webrtc/modules/audio_coding/neteq/packet.h" |
| 14 #include "webrtc/modules/audio_coding/neteq/timestamp_scaler.h" |
| 16 #include "webrtc/test/gmock.h" | 15 #include "webrtc/test/gmock.h" |
| 17 #include "webrtc/test/gtest.h" | 16 #include "webrtc/test/gtest.h" |
| 18 | 17 |
| 19 using ::testing::Return; | 18 using ::testing::Return; |
| 20 using ::testing::ReturnNull; | 19 using ::testing::ReturnNull; |
| 21 using ::testing::_; | 20 using ::testing::_; |
| 22 | 21 |
| 23 namespace webrtc { | 22 namespace webrtc { |
| 24 | 23 |
| 25 TEST(TimestampScaler, TestNoScaling) { | 24 TEST(TimestampScaler, TestNoScaling) { |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 uint32_t timestamp = 4711; // Some number. | 306 uint32_t timestamp = 4711; // Some number. |
| 308 EXPECT_EQ(timestamp, scaler.ToInternal(timestamp, kRtpPayloadType)); | 307 EXPECT_EQ(timestamp, scaler.ToInternal(timestamp, kRtpPayloadType)); |
| 309 | 308 |
| 310 Packet* packet = NULL; | 309 Packet* packet = NULL; |
| 311 scaler.ToInternal(packet); // Should not crash. That's all we can test. | 310 scaler.ToInternal(packet); // Should not crash. That's all we can test. |
| 312 | 311 |
| 313 EXPECT_CALL(db, Die()); // Called when database object is deleted. | 312 EXPECT_CALL(db, Die()); // Called when database object is deleted. |
| 314 } | 313 } |
| 315 | 314 |
| 316 } // namespace webrtc | 315 } // namespace webrtc |
| OLD | NEW |