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

Unified Diff: remoting/codec/video_encoder_vpx.cc

Issue 590363002: Use VPX_IMG_FMT_*/VPX_PLANE_* defines (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: VP9E_SET_NOISE Created 6 years, 3 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 61d94c9c8b2b9da0837b10665406ddae2f1247f6..e43cf5bf395f4f14d7565435f497a51d7c54ef8f 100644
--- a/remoting/codec/video_encoder_vpx.cc
+++ b/remoting/codec/video_encoder_vpx.cc
@@ -142,8 +142,7 @@ ScopedVpxCodec CreateVP9Codec(const webrtc::DesktopSize& size,
// Use the lowest level of noise sensitivity so as to spend less time
// on motion estimation and inter-prediction mode.
- // Note that this is configured via the same parameter as for VP8.
- if (vpx_codec_control(codec.get(), VP8E_SET_NOISE_SENSITIVITY, 0))
+ if (vpx_codec_control(codec.get(), VP9E_SET_NOISE_SENSITIVITY, 0))
return ScopedVpxCodec();
return codec.Pass();
« 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