summaryrefslogtreecommitdiffstats
path: root/media/webrtc
diff options
context:
space:
mode:
authorJiaxun Yang <jiaxun.yang@flygoat.com>2020-05-12 12:40:15 +0800
committerJiaxun Yang <jiaxun.yang@flygoat.com>2020-05-14 16:32:11 +0800
commit7ce1ea0a41c20e168922f8e9c25f220e19887c10 (patch)
tree85c09b0db905819314515d8724c9c76dee3c5746 /media/webrtc
parent3b1aec2e6120c020f00612816e0a696ccf8936f6 (diff)
downloadUXP-7ce1ea0a41c20e168922f8e9c25f220e19887c10.tar
UXP-7ce1ea0a41c20e168922f8e9c25f220e19887c10.tar.gz
UXP-7ce1ea0a41c20e168922f8e9c25f220e19887c10.tar.lz
UXP-7ce1ea0a41c20e168922f8e9c25f220e19887c10.tar.xz
UXP-7ce1ea0a41c20e168922f8e9c25f220e19887c10.zip
Issue #1542 - [WebRTC] Set CPU speed to -1 on MIPS
CPU is pretty slow due to lack of SIMD optmization.
Diffstat (limited to 'media/webrtc')
-rw-r--r--media/webrtc/trunk/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/media/webrtc/trunk/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc b/media/webrtc/trunk/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc
index 5eb0fd279..b6a9fc596 100644
--- a/media/webrtc/trunk/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc
+++ b/media/webrtc/trunk/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc
@@ -615,6 +615,11 @@ int VP8EncoderImpl::SetCpuSpeed(int width, int height) {
// On mobile platform, always set to -12 to leverage between cpu usage
// and video quality.
return -12;
+#elif defined(WEBRTC_ARCH_MIPS)
+ // On mips platform, temporarily set to -12 to leverage between cpu usage
+ // and video quality.
+ // TODO: Once improved the coding performance,recover the complexity setting.
+ return -12;
#else
// For non-ARM, increase encoding complexity (i.e., use lower speed setting)
// if resolution is below CIF. Otherwise, keep the default/user setting