Fix ARM64 detection for VP8 and VP9 wrappers.
BUG=4702 R=marpan@google.com, stefan@webrtc.org Review URL: https://webrtc-codereview.appspot.com/57459004 Cr-Commit-Position: refs/heads/master@{#9287}
This commit is contained in:
@ -236,7 +236,7 @@ int VP9EncoderImpl::InitAndSetControlSettings(const VideoCodec* inst) {
|
||||
// The number tile columns will be capped by the encoder based on image size
|
||||
// (minimum width of tile column is 256 pixels, maximum is 4096).
|
||||
vpx_codec_control(encoder_, VP9E_SET_TILE_COLUMNS, (config_->g_threads >> 1));
|
||||
#if !defined(WEBRTC_ARCH_ARM)
|
||||
#if !defined(WEBRTC_ARCH_ARM) && !defined(WEBRTC_ARCH_ARM64)
|
||||
// Note denoiser is still off by default until further testing/optimization,
|
||||
// i.e., codecSpecific.VP9.denoisingOn == 0.
|
||||
vpx_codec_control(encoder_, VP9E_SET_NOISE_SENSITIVITY,
|
||||
|
Reference in New Issue
Block a user