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

Unified Diff: voice_engine/voe_codec_impl.h

Issue 3019433002: Remove VoECodec (Closed)
Patch Set: rebase Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « voice_engine/include/voe_codec.h ('k') | voice_engine/voe_codec_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: voice_engine/voe_codec_impl.h
diff --git a/voice_engine/voe_codec_impl.h b/voice_engine/voe_codec_impl.h
deleted file mode 100644
index 9101f5d62e5e98ebae484a9fde91ecbce3d019d7..0000000000000000000000000000000000000000
--- a/voice_engine/voe_codec_impl.h
+++ /dev/null
@@ -1,73 +0,0 @@
-/*
- * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
- *
- * Use of this source code is governed by a BSD-style license
- * that can be found in the LICENSE file in the root of the source
- * tree. An additional intellectual property rights grant can be found
- * in the file PATENTS. All contributing project authors may
- * be found in the AUTHORS file in the root of the source tree.
- */
-
-#ifndef VOICE_ENGINE_VOE_CODEC_IMPL_H_
-#define VOICE_ENGINE_VOE_CODEC_IMPL_H_
-
-#include "voice_engine/include/voe_codec.h"
-
-#include "voice_engine/shared_data.h"
-
-namespace webrtc {
-
-class VoECodecImpl : public VoECodec {
- public:
- int NumOfCodecs() override;
-
- int GetCodec(int index, CodecInst& codec) override;
-
- int SetSendCodec(int channel, const CodecInst& codec) override;
-
- int GetSendCodec(int channel, CodecInst& codec) override;
-
- int SetBitRate(int channel, int bitrate_bps) override;
-
- int GetRecCodec(int channel, CodecInst& codec) override;
-
- int SetSendCNPayloadType(
- int channel,
- int type,
- PayloadFrequencies frequency = kFreq16000Hz) override;
-
- int SetRecPayloadType(int channel, const CodecInst& codec) override;
-
- int GetRecPayloadType(int channel, CodecInst& codec) override;
-
- int SetFECStatus(int channel, bool enable) override;
-
- int GetFECStatus(int channel, bool& enabled) override;
-
- int SetVADStatus(int channel,
- bool enable,
- VadModes mode = kVadConventional,
- bool disableDTX = false) override;
-
- int GetVADStatus(int channel,
- bool& enabled,
- VadModes& mode,
- bool& disabledDTX) override;
-
- int SetOpusMaxPlaybackRate(int channel, int frequency_hz) override;
-
- int SetOpusDtx(int channel, bool enable_dtx) override;
-
- int GetOpusDtxStatus(int channel, bool* enabled) override;
-
- protected:
- VoECodecImpl(voe::SharedData* shared);
- ~VoECodecImpl() override;
-
- private:
- voe::SharedData* _shared;
-};
-
-} // namespace webrtc
-
-#endif // VOICE_ENGINE_VOE_CODEC_IMPL_H_
« no previous file with comments | « voice_engine/include/voe_codec.h ('k') | voice_engine/voe_codec_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698