| Index: talk/media/base/mediaengine.h
|
| diff --git a/talk/media/base/mediaengine.h b/talk/media/base/mediaengine.h
|
| index cc033a71dc8a3b96c2b840ffa76c65c0282e3cb6..43b4de5a52ddf8467def3ea4c77662057f0655e7 100644
|
| --- a/talk/media/base/mediaengine.h
|
| +++ b/talk/media/base/mediaengine.h
|
| @@ -88,11 +88,6 @@ class MediaEngineInterface {
|
| webrtc::Call* call,
|
| const VideoOptions& options) = 0;
|
|
|
| - // Sets the default (maximum) codec/resolution and encoder option to capture
|
| - // and encode video.
|
| - virtual bool SetDefaultVideoEncoderConfig(const VideoEncoderConfig& config)
|
| - = 0;
|
| -
|
| // Device configuration
|
| // Gets the current speaker volume, as a value between 0 and 255.
|
| virtual bool GetOutputVolume(int* level) = 0;
|
| @@ -167,10 +162,6 @@ class CompositeMediaEngine : public MediaEngineInterface {
|
| return video_.CreateChannel(call, options);
|
| }
|
|
|
| - virtual bool SetDefaultVideoEncoderConfig(const VideoEncoderConfig& config) {
|
| - return video_.SetDefaultEncoderConfig(config);
|
| - }
|
| -
|
| virtual bool GetOutputVolume(int* level) {
|
| return voice_.GetOutputVolume(level);
|
| }
|
|
|