Lines Matching refs:channel

14 //  - Voice Activity Detection (VAD) on a per channel basis.
60 // Sets the |codec| for the |channel| to be used for sending.
61 virtual int SetSendCodec(int channel, const CodecInst& codec) = 0;
64 // |channel|.
65 virtual int GetSendCodec(int channel, CodecInst& codec) = 0;
67 // Sets the bitrate on a specified |channel| to the specified value
71 virtual int SetBitRate(int channel, int bitrate_bps) = 0;
73 // Gets the currently received |codec| for a specific |channel|.
74 virtual int GetRecCodec(int channel, CodecInst& codec) = 0;
82 virtual int SetRecPayloadType(int channel, const CodecInst& codec) = 0;
85 // |channel|. The value it retrieves will either be the default payload
87 virtual int GetRecPayloadType(int channel, CodecInst& codec) = 0;
92 int channel,
97 // specified |channel|. Returns 0 if success, and -1 if failed.
100 virtual int SetFECStatus(int channel, bool enable) { return -1; }
102 // Gets the codec internal FEC status for a specified |channel|. Returns 0
107 virtual int GetFECStatus(int channel, bool& enabled) { return -1; }
110 // specified |channel|. Disabling VAD (through |enable|) will also disable
112 virtual int SetVADStatus(int channel,
117 // Gets the VAD/DTX status and |mode| for a specified |channel|.
118 virtual int GetVADStatus(int channel,
123 // If send codec is Opus on a specified |channel|, sets the maximum playback
127 virtual int SetOpusMaxPlaybackRate(int channel, int frequency_hz) {
131 // If send codec is Opus on a specified |channel|, set its DTX. Returns 0 if
133 virtual int SetOpusDtx(int channel, bool enable_dtx) = 0;