| Index: chrome/renderer/media/cast_rtp_stream.cc
|
| diff --git a/chrome/renderer/media/cast_rtp_stream.cc b/chrome/renderer/media/cast_rtp_stream.cc
|
| index 01d0fce19b75e52cb5d9f84a3a671b034cfcb30d..9262a8ab63561fa68fbe8dc5be3b5d43260dfb1b 100644
|
| --- a/chrome/renderer/media/cast_rtp_stream.cc
|
| +++ b/chrome/renderer/media/cast_rtp_stream.cc
|
| @@ -432,7 +432,9 @@ bool CastRtpStream::IsHardwareH264EncodingSupported() {
|
| //
|
| // TODO(miu): Look into why H.264 hardware encoder on MacOS is broken.
|
| // http://crbug.com/596674
|
| -#if !defined(OS_MACOSX)
|
| +// TODO(emircan): Look into HW encoder initialization issues on Win.
|
| +// https://crbug.com/636064
|
| +#if !defined(OS_MACOSX) && !defined(OS_WIN)
|
| const std::vector<media::VideoEncodeAccelerator::SupportedProfile>
|
| vea_profiles = content::GetSupportedVideoEncodeAcceleratorProfiles();
|
| for (const auto& vea_profile : vea_profiles) {
|
| @@ -441,7 +443,7 @@ bool CastRtpStream::IsHardwareH264EncodingSupported() {
|
| return true;
|
| }
|
| }
|
| -#endif // !defined(OS_MACOSX)
|
| +#endif // !defined(OS_MACOSX) && !defined(OS_WIN)
|
| return false;
|
| }
|
|
|
|
|