Remove VideoCodingModule::InitializeSender.

This code is no longer used to reset, so we can just initialize the
object in the constructor.

BUG=4391
R=stefan@webrtc.org

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

Cr-Commit-Position: refs/heads/master@{#9043}
This commit is contained in:
Peter Boström
2015-04-21 15:55:11 +02:00
parent 95702246d7
commit 9dbbcfbcb5
6 changed files with 2 additions and 32 deletions

View File

@ -119,18 +119,6 @@ public:
* Sender
*/
// Any encoder-related state of VCM will be initialized to the
// same state as when the VCM was created. This will not interrupt
// or effect decoding functionality of VCM. VCM will lose all the
// encoding-related settings by calling this function.
// For instance, a send codec has to be registered again.
//
// NOTE: Must be called on the thread that constructed the VCM instance.
//
// Return value : VCM_OK, on success.
// < 0, on error.
virtual int32_t InitializeSender() = 0;
// Registers a codec to be used for encoding. Calling this
// API multiple times overwrites any previously registered codecs.
//