Chromium Code Reviews| 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..1ffa9772f378d990289fee2fe827e915a6900e33 100644 |
| --- a/content/common/gpu/media/mac_video_decode_accelerator.mm |
| +++ b/content/common/gpu/media/mac_video_decode_accelerator.mm |
| @@ -104,6 +104,11 @@ 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. |
|
scherkus (not reviewing)
2012/11/16 22:36:11
link to mac bug
|
| + if (true) |
| + return false; |
| + |
| if (profile < media::H264PROFILE_MIN || profile > media::H264PROFILE_MAX) |
| return false; |