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

Side by Side Diff: webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.h

Issue 1438663003: modules/audio_coding: Remove some codec include dirs (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase again Created 5 years, 1 month 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
11 #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_CNG_INCLUDE_AUDIO_ENCODER_CNG_H_ 11 #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_CNG_AUDIO_ENCODER_CNG_H_
12 #define WEBRTC_MODULES_AUDIO_CODING_CODECS_CNG_INCLUDE_AUDIO_ENCODER_CNG_H_ 12 #define WEBRTC_MODULES_AUDIO_CODING_CODECS_CNG_AUDIO_ENCODER_CNG_H_
13 13
14 #include <vector> 14 #include <vector>
15 15
16 #include "webrtc/base/scoped_ptr.h" 16 #include "webrtc/base/scoped_ptr.h"
17 #include "webrtc/common_audio/vad/include/vad.h" 17 #include "webrtc/common_audio/vad/include/vad.h"
18 #include "webrtc/modules/audio_coding/codecs/audio_encoder.h" 18 #include "webrtc/modules/audio_coding/codecs/audio_encoder.h"
19 #include "webrtc/modules/audio_coding/codecs/cng/include/webrtc_cng.h" 19 #include "webrtc/modules/audio_coding/codecs/cng/webrtc_cng.h"
20 20
21 namespace webrtc { 21 namespace webrtc {
22 22
23 // Deleter for use with scoped_ptr. 23 // Deleter for use with scoped_ptr.
24 struct CngInstDeleter { 24 struct CngInstDeleter {
25 void operator()(CNG_enc_inst* ptr) const { WebRtcCng_FreeEnc(ptr); } 25 void operator()(CNG_enc_inst* ptr) const { WebRtcCng_FreeEnc(ptr); }
26 }; 26 };
27 27
28 class Vad; 28 class Vad;
29 29
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 std::vector<uint32_t> rtp_timestamps_; 85 std::vector<uint32_t> rtp_timestamps_;
86 bool last_frame_active_; 86 bool last_frame_active_;
87 rtc::scoped_ptr<Vad> vad_; 87 rtc::scoped_ptr<Vad> vad_;
88 rtc::scoped_ptr<CNG_enc_inst, CngInstDeleter> cng_inst_; 88 rtc::scoped_ptr<CNG_enc_inst, CngInstDeleter> cng_inst_;
89 89
90 RTC_DISALLOW_COPY_AND_ASSIGN(AudioEncoderCng); 90 RTC_DISALLOW_COPY_AND_ASSIGN(AudioEncoderCng);
91 }; 91 };
92 92
93 } // namespace webrtc 93 } // namespace webrtc
94 94
95 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_CNG_INCLUDE_AUDIO_ENCODER_CNG_H_ 95 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_CNG_AUDIO_ENCODER_CNG_H_
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/codecs/audio_decoder.h ('k') | webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698