Increase speed setting for VP9 (from 5 to 6) and re-enable end_to_end test.
TBR=stefan@webrtc.org Review URL: https://webrtc-codereview.appspot.com/28949004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@7637 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -189,11 +189,8 @@ int VP9EncoderImpl::InitAndSetControlSettings(const VideoCodec* inst) {
|
||||
return WEBRTC_VIDEO_CODEC_UNINITIALIZED;
|
||||
}
|
||||
// Only positive speeds, currently: 0 - 7.
|
||||
// O means slowest/best quality, 7 means fastest/lowest quality.
|
||||
// TODO(marpan): Speeds 5-7 are speed settings for real-time mode, on desktop.
|
||||
// Currently set to 5, update to 6 (for faster encoding) after some subjective
|
||||
// quality tests.
|
||||
cpu_speed_ = 5;
|
||||
// O means slowest/best quality, 7 means fastest/lower quality.
|
||||
cpu_speed_ = 6;
|
||||
// Note: some of these codec controls still use "VP8" in the control name.
|
||||
// TODO(marpan): Update this in the next/future libvpx version.
|
||||
vpx_codec_control(encoder_, VP8E_SET_CPUUSED, cpu_speed_);
|
||||
|
||||
Reference in New Issue
Block a user