Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(182)

Unified Diff: remoting/codec/video_encoder_vpx.cc

Issue 678073007: Use cpuused=6 for lossy VP9 mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/codec/video_encoder_vpx.cc
diff --git a/remoting/codec/video_encoder_vpx.cc b/remoting/codec/video_encoder_vpx.cc
index 453680237e47e12baad4d3dd10aa400d80a9c656..3ee9e6ac57e4276c667187f21e675502f8e411cf 100644
--- a/remoting/codec/video_encoder_vpx.cc
+++ b/remoting/codec/video_encoder_vpx.cc
@@ -136,7 +136,7 @@ ScopedVpxCodec CreateVP9Codec(const webrtc::DesktopSize& size,
// Request the lowest-CPU usage that VP9 supports, which depends on whether
// we are encoding lossy or lossless.
// Note that this is configured via the same parameter as for VP8.
- int cpu_used = lossless_encode ? 5 : 7;
+ int cpu_used = lossless_encode ? 5 : 6;
if (vpx_codec_control(codec.get(), VP8E_SET_CPUUSED, cpu_used))
return ScopedVpxCodec();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698