Switch to using AudioEncoderOpus instead of ACMOpus

This change switches from the old codec wrapper ACMOpus to the new
AudioEncoderOpus wrapped in an ACMGenericCodecWrapper.

BUG=4228
TEST=Please, try the Opus codec extensively.
COAUTHOR=kwiberg@webrtc.org
R=tina.legrand@webrtc.org

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

Cr-Commit-Position: refs/heads/master@{#8341}
git-svn-id: http://webrtc.googlecode.com/svn/trunk@8341 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
henrik.lundin@webrtc.org
2015-02-11 21:33:34 +00:00
parent 1226e926e6
commit 6c68c85b46
3 changed files with 20 additions and 2 deletions

View File

@ -38,6 +38,7 @@ class AudioEncoderOpus final : public AudioEncoder {
int bitrate_bps;
bool fec_enabled;
int max_playback_rate_hz;
int complexity;
};
explicit AudioEncoderOpus(const Config& config);