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

Side by Side Diff: webrtc/modules/audio_coding/neteq/mock/mock_delay_manager.h

Issue 2355503002: Stopped using the NetEqDecoder enum internally in NetEq. (Closed)
Patch Set: Clarified comments. Created 4 years, 3 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
(...skipping 29 matching lines...) Expand all
40 MOCK_CONST_METHOD0(PeakFound, 40 MOCK_CONST_METHOD0(PeakFound,
41 bool()); 41 bool());
42 MOCK_METHOD1(UpdateCounters, 42 MOCK_METHOD1(UpdateCounters,
43 void(int elapsed_time_ms)); 43 void(int elapsed_time_ms));
44 MOCK_METHOD0(ResetPacketIatCount, 44 MOCK_METHOD0(ResetPacketIatCount,
45 void()); 45 void());
46 MOCK_CONST_METHOD2(BufferLimits, 46 MOCK_CONST_METHOD2(BufferLimits,
47 void(int* lower_limit, int* higher_limit)); 47 void(int* lower_limit, int* higher_limit));
48 MOCK_CONST_METHOD0(TargetLevel, 48 MOCK_CONST_METHOD0(TargetLevel,
49 int()); 49 int());
50 MOCK_METHOD1(LastDecoderType,
51 void(NetEqDecoder decoder_type));
52 MOCK_METHOD1(set_extra_delay_ms, 50 MOCK_METHOD1(set_extra_delay_ms,
53 void(int16_t delay)); 51 void(int16_t delay));
54 MOCK_CONST_METHOD0(base_target_level, 52 MOCK_CONST_METHOD0(base_target_level,
55 int()); 53 int());
56 MOCK_METHOD1(set_streaming_mode, 54 MOCK_METHOD1(set_streaming_mode,
57 void(bool value)); 55 void(bool value));
58 MOCK_CONST_METHOD0(last_pack_cng_or_dtmf, 56 MOCK_CONST_METHOD0(last_pack_cng_or_dtmf,
59 int()); 57 int());
60 MOCK_METHOD1(set_last_pack_cng_or_dtmf, 58 MOCK_METHOD1(set_last_pack_cng_or_dtmf,
61 void(int value)); 59 void(int value));
62 }; 60 };
63 61
64 } // namespace webrtc 62 } // namespace webrtc
65 #endif // WEBRTC_MODULES_AUDIO_CODING_NETEQ_MOCK_MOCK_DELAY_MANAGER_H_ 63 #endif // WEBRTC_MODULES_AUDIO_CODING_NETEQ_MOCK_MOCK_DELAY_MANAGER_H_
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/neteq/mock/mock_decoder_database.h ('k') | webrtc/modules/audio_coding/neteq/neteq_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698