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 #ifndef WEBRTC_MODULES_AUDIO_CODING_NETEQ_MOCK_MOCK_DECODER_DATABASE_H_ | 11 #ifndef WEBRTC_MODULES_AUDIO_CODING_NETEQ_MOCK_MOCK_DECODER_DATABASE_H_ |
12 #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_MOCK_MOCK_DECODER_DATABASE_H_ | 12 #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_MOCK_MOCK_DECODER_DATABASE_H_ |
13 | 13 |
14 #include <string> | 14 #include <string> |
15 | 15 |
16 #include "webrtc/modules/audio_coding/neteq/decoder_database.h" | 16 #include "webrtc/modules/audio_coding/neteq/decoder_database.h" |
17 | 17 |
18 #include "testing/gmock/include/gmock/gmock.h" | 18 #include "testing/gmock/include/gmock/gmock.h" |
19 | 19 |
20 namespace webrtc { | 20 namespace webrtc { |
21 | 21 |
22 class MockDecoderDatabase : public DecoderDatabase { | 22 class MockDecoderDatabase : public DecoderDatabase { |
23 public: | 23 public: |
24 MockDecoderDatabase() : DecoderDatabase(nullptr) {} | 24 MockDecoderDatabase() |
| 25 : DecoderDatabase(std::shared_ptr<AudioDecoderFactory>()) {} |
| 26 |
25 virtual ~MockDecoderDatabase() { Die(); } | 27 virtual ~MockDecoderDatabase() { Die(); } |
26 MOCK_METHOD0(Die, void()); | 28 MOCK_METHOD0(Die, void()); |
27 MOCK_CONST_METHOD0(Empty, | 29 MOCK_CONST_METHOD0(Empty, |
28 bool()); | 30 bool()); |
29 MOCK_CONST_METHOD0(Size, | 31 MOCK_CONST_METHOD0(Size, |
30 int()); | 32 int()); |
31 MOCK_METHOD0(Reset, | 33 MOCK_METHOD0(Reset, |
32 void()); | 34 void()); |
33 MOCK_METHOD3(RegisterPayload, | 35 MOCK_METHOD3(RegisterPayload, |
34 int(uint8_t rtp_payload_type, NetEqDecoder codec_type, | 36 int(uint8_t rtp_payload_type, NetEqDecoder codec_type, |
(...skipping 25 matching lines...) Expand all Loading... |
60 MOCK_METHOD1(SetActiveCngDecoder, | 62 MOCK_METHOD1(SetActiveCngDecoder, |
61 int(uint8_t rtp_payload_type)); | 63 int(uint8_t rtp_payload_type)); |
62 MOCK_METHOD0(GetActiveCngDecoder, | 64 MOCK_METHOD0(GetActiveCngDecoder, |
63 ComfortNoiseDecoder*()); | 65 ComfortNoiseDecoder*()); |
64 MOCK_CONST_METHOD1(CheckPayloadTypes, | 66 MOCK_CONST_METHOD1(CheckPayloadTypes, |
65 int(const PacketList& packet_list)); | 67 int(const PacketList& packet_list)); |
66 }; | 68 }; |
67 | 69 |
68 } // namespace webrtc | 70 } // namespace webrtc |
69 #endif // WEBRTC_MODULES_AUDIO_CODING_NETEQ_MOCK_MOCK_DECODER_DATABASE_H_ | 71 #endif // WEBRTC_MODULES_AUDIO_CODING_NETEQ_MOCK_MOCK_DECODER_DATABASE_H_ |
OLD | NEW |