Add experiment: SkipEncodingUnusedStreams

BUG=
R=mflodman@webrtc.org

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

git-svn-id: http://webrtc.googlecode.com/svn/trunk@5514 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
sprang@webrtc.org
2014-02-10 09:20:51 +00:00
parent 4723dc88b3
commit 6f0ca57fb2

View File

@ -28,5 +28,14 @@ struct RemoteBitrateEstimatorMinRate {
uint32_t min_rate;
};
struct SkipEncodingUnusedStreams {
SkipEncodingUnusedStreams() : enabled(false) {}
explicit SkipEncodingUnusedStreams(bool set_enabled)
: enabled(set_enabled) {}
virtual ~SkipEncodingUnusedStreams() {}
const bool enabled;
};
} // namespace webrtc
#endif // WEBRTC_EXPERIMENTS_H_