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

Side by Side Diff: webrtc/modules/audio_coding/acm2/acm_send_test_oldapi.h

Issue 2291503002: Fix Chromium clang plugin warnings (Closed)
Patch Set: 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) 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
(...skipping 14 matching lines...) Expand all
25 namespace test { 25 namespace test {
26 class InputAudioFile; 26 class InputAudioFile;
27 class Packet; 27 class Packet;
28 28
29 class AcmSendTestOldApi : public AudioPacketizationCallback, 29 class AcmSendTestOldApi : public AudioPacketizationCallback,
30 public PacketSource { 30 public PacketSource {
31 public: 31 public:
32 AcmSendTestOldApi(InputAudioFile* audio_source, 32 AcmSendTestOldApi(InputAudioFile* audio_source,
33 int source_rate_hz, 33 int source_rate_hz,
34 int test_duration_ms); 34 int test_duration_ms);
35 virtual ~AcmSendTestOldApi() {} 35 ~AcmSendTestOldApi() override;
36 36
37 // Registers the send codec. Returns true on success, false otherwise. 37 // Registers the send codec. Returns true on success, false otherwise.
38 bool RegisterCodec(const char* payload_name, 38 bool RegisterCodec(const char* payload_name,
39 int sampling_freq_hz, 39 int sampling_freq_hz,
40 int channels, 40 int channels,
41 int payload_type, 41 int payload_type,
42 int frame_size_samples); 42 int frame_size_samples);
43 43
44 // Registers an external send codec. Returns true on success, false otherwise. 44 // Registers an external send codec. Returns true on success, false otherwise.
45 bool RegisterExternalCodec(AudioEncoder* external_speech_encoder); 45 bool RegisterExternalCodec(AudioEncoder* external_speech_encoder);
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 uint16_t sequence_number_; 79 uint16_t sequence_number_;
80 std::vector<uint8_t> last_payload_vec_; 80 std::vector<uint8_t> last_payload_vec_;
81 bool data_to_send_; 81 bool data_to_send_;
82 82
83 RTC_DISALLOW_COPY_AND_ASSIGN(AcmSendTestOldApi); 83 RTC_DISALLOW_COPY_AND_ASSIGN(AcmSendTestOldApi);
84 }; 84 };
85 85
86 } // namespace test 86 } // namespace test
87 } // namespace webrtc 87 } // namespace webrtc
88 #endif // WEBRTC_MODULES_AUDIO_CODING_ACM2_ACM_SEND_TEST_OLDAPI_H_ 88 #endif // WEBRTC_MODULES_AUDIO_CODING_ACM2_ACM_SEND_TEST_OLDAPI_H_
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/BUILD.gn ('k') | webrtc/modules/audio_coding/acm2/acm_send_test_oldapi.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698