Remove dual stream functionality in VoiceEngine

This is old code that is no longer in use. The clean-up is part of the
ACM redesign work. The corresponding code in ACM will be deleted in a
follow-up CL.

BUG=3520
R=henrika@webrtc.org, pbos@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/32999004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@8060 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
henrik.lundin@webrtc.org
2015-01-14 16:07:26 +00:00
parent b4e5d1b34e
commit 8315d7de85
7 changed files with 0 additions and 250 deletions

View File

@ -64,23 +64,6 @@ public:
// |channel|.
virtual int GetSendCodec(int channel, CodecInst& codec) = 0;
// Sets the |codec| as secondary codec for |channel|. Registering a
// secondary send codec enables dual-streaming. In dual-streaming mode,
// payloads of the primary and the secondary codecs are packed in RED
// payloads with |red_payload_type| as payload type. The Secondary codec
// MUST have the same sampling rate as the primary codec, otherwise the
// codec cannot be registered and -1 is returned. This method fails if a
// primary codec is not yet set.
virtual int SetSecondarySendCodec(int channel, const CodecInst& codec,
int red_payload_type) = 0;
// Removes the secondary codec from |channel|. This will terminate
// dual-streaming.
virtual int RemoveSecondarySendCodec(int channel) = 0;
// Gets |codec| which is used as secondary codec in |channel|.
virtual int GetSecondarySendCodec(int channel, CodecInst& codec) = 0;
// Gets the currently received |codec| for a specific |channel|.
virtual int GetRecCodec(int channel, CodecInst& codec) = 0;