X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2Fwebrtc%2Fmodules%2Faudio_coding%2Fmain%2Facm2%2Facm_celt.cc;h=70cd0a869679f42f5cdbcf146f5c2fe9901697fc;hb=3545e9f2671f595d2a2f3ee75ca0393b01e35ef6;hp=3cd6e84d46af09eca9315dd4c9f1179d96212e08;hpb=7d210d4c7e9ba36e635eabc5b5780495f8a63292;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/webrtc/modules/audio_coding/main/acm2/acm_celt.cc b/src/third_party/webrtc/modules/audio_coding/main/acm2/acm_celt.cc index 3cd6e84..70cd0a8 100644 --- a/src/third_party/webrtc/modules/audio_coding/main/acm2/acm_celt.cc +++ b/src/third_party/webrtc/modules/audio_coding/main/acm2/acm_celt.cc @@ -57,10 +57,6 @@ void ACMCELT::DestructEncoderSafe() { return; } -void ACMCELT::InternalDestructEncoderInst(void* /* ptr_inst */) { - return; -} - int16_t ACMCELT::SetBitRateSafe(const int32_t /*rate*/) { return -1; } @@ -159,13 +155,6 @@ void ACMCELT::DestructEncoderSafe() { } } -void ACMCELT::InternalDestructEncoderInst(void* ptr_inst) { - if (ptr_inst != NULL) { - WebRtcCelt_FreeEnc(static_cast(ptr_inst)); - } - return; -} - int16_t ACMCELT::SetBitRateSafe(const int32_t rate) { // Check that rate is in the valid range. if ((rate >= 48000) && (rate <= 128000)) {