| Index: webrtc/modules/utility/source/coder.cc
|
| diff --git a/webrtc/modules/utility/source/coder.cc b/webrtc/modules/utility/source/coder.cc
|
| index 1baeaef7214997e079ab9938076f29c498ffb6c0..4ec5f9b4e278529cd81b5abd87cabb95d3aa5139 100644
|
| --- a/webrtc/modules/utility/source/coder.cc
|
| +++ b/webrtc/modules/utility/source/coder.cc
|
| @@ -29,8 +29,7 @@ AudioCoder::~AudioCoder()
|
| {
|
| }
|
|
|
| -int32_t AudioCoder::SetEncodeCodec(const CodecInst& codecInst,
|
| - ACMAMRPackingFormat amrFormat)
|
| +int32_t AudioCoder::SetEncodeCodec(const CodecInst& codecInst)
|
| {
|
| if(_acm->RegisterSendCodec((CodecInst&)codecInst) == -1)
|
| {
|
| @@ -39,8 +38,7 @@ int32_t AudioCoder::SetEncodeCodec(const CodecInst& codecInst,
|
| return 0;
|
| }
|
|
|
| -int32_t AudioCoder::SetDecodeCodec(const CodecInst& codecInst,
|
| - ACMAMRPackingFormat amrFormat)
|
| +int32_t AudioCoder::SetDecodeCodec(const CodecInst& codecInst)
|
| {
|
| if(_acm->RegisterReceiveCodec((CodecInst&)codecInst) == -1)
|
| {
|
|
|