summaryrefslogtreecommitdiffstats
path: root/remoting/codec/video_encoder_vpx.cc
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/codec/video_encoder_vpx.cc')
-rw-r--r--remoting/codec/video_encoder_vpx.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/remoting/codec/video_encoder_vpx.cc b/remoting/codec/video_encoder_vpx.cc
index d9f5bf7..73e8ee8 100644
--- a/remoting/codec/video_encoder_vpx.cc
+++ b/remoting/codec/video_encoder_vpx.cc
@@ -133,10 +133,6 @@ void SetVp9CodecOptions(vpx_codec_ctx_t* codec, bool lossless_encode) {
ret = vpx_codec_control(
codec, VP9E_SET_TUNE_CONTENT, VP9E_CONTENT_SCREEN);
DCHECK_EQ(VPX_CODEC_OK, ret) << "Failed to set screen content mode";
-
- // VP9 tiles allow for parallelism on both encode and decode
- ret = vpx_codec_control(codec, VP9E_SET_TILE_COLUMNS, 1);
- DCHECK_EQ(VPX_CODEC_OK, ret) << "Failed to set tile columns";
}
void CreateImage(bool use_i444,