Skip to content
Snippets Groups Projects
Commit 19b17087 authored by Rafaël Carré's avatar Rafaël Carré
Browse files

* #6611: AudioCodec: remove useless/unused setters

parent 65be7160
Branches
Tags
No related merge requests found
......@@ -159,29 +159,6 @@ class AudioCodec : public Codec
bool _hasDynamicPayload;
void setCodecName (const std::string& codecName) {
_codecName = codecName;
}
void setClockRate (uint32 rate) {
_clockRate = rate;
}
void setChannel (uint8 channel) {
_channel = channel;
}
void setFrameSize (unsigned size) {
_frameSize = size;
}
void setBitrate (double rate) {
_bitrate = rate;
}
void setBandwidth (double bandwidth) {
_bandwidth = bandwidth;
}
private:
uint8 _payload;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment