| Index: content/common/gpu/media/mac_video_decode_accelerator.mm
|
| diff --git a/content/common/gpu/media/mac_video_decode_accelerator.mm b/content/common/gpu/media/mac_video_decode_accelerator.mm
|
| index 0f64ffb31e47d532817e04d091dc8cffbed17db9..ed8f2e6649be6c1b8a9fc5615f8ff35d844a2c3e 100644
|
| --- a/content/common/gpu/media/mac_video_decode_accelerator.mm
|
| +++ b/content/common/gpu/media/mac_video_decode_accelerator.mm
|
| @@ -104,6 +104,12 @@ MacVideoDecodeAccelerator::MacVideoDecodeAccelerator(
|
| bool MacVideoDecodeAccelerator::Initialize(media::VideoCodecProfile profile) {
|
| DCHECK(CalledOnValidThread());
|
|
|
| + // MacVDA still fails on too many videos to be useful, even to users who
|
| + // ignore the GPU blacklist. Fail unconditionally here until enough of
|
| + // crbug.com/133828's blockers are resolved.
|
| + if (true)
|
| + return false;
|
| +
|
| if (profile < media::H264PROFILE_MIN || profile > media::H264PROFILE_MAX)
|
| return false;
|
|
|
|
|