Remove AudioCodingModule::Process()

An earlier change moved the encoding work from Process to
Add10MsData; process was just a no-op.

BUG=3520
COAUTHOR=kwiberg@webrtc.org
R=henrika@webrtc.org, minyue@webrtc.org, tina.legrand@webrtc.org

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

Cr-Commit-Position: refs/heads/master@{#8553}
git-svn-id: http://webrtc.googlecode.com/svn/trunk@8553 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
henrik.lundin@webrtc.org
2015-03-02 12:29:30 +00:00
parent 25dd1dbb9f
commit f56c162310
21 changed files with 54 additions and 142 deletions

View File

@ -96,10 +96,6 @@ int32_t AudioCoder::Encode(const AudioFrame& audio,
return -1;
}
_encodedData = encodedData;
if(_acm->Process() == -1)
{
return -1;
}
encodedLengthInBytes = _encodedLengthInBytes;
return 0;
}