| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
1 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: media/gpu/gpu_video_encode_accelerator_factory.cc
Insertions: 4, Deletions: 0.
@@ -340,6 +340,10 @@
static base::NoDestructor<VideoEncodeAccelerator::SupportedProfiles>
second_try_profiles(GetSupportedProfilesInternal(
gpu_preferences, gpu_workarounds, gpu_device));
+ if (second_try_profiles->empty()) {
+ return GetSupportedProfilesInternal(gpu_preferences, gpu_workarounds,
+ gpu_device);
+ }
return *second_try_profiles;
}
#endif
```
media: Fix data races in VEA factory static initializers
We stopped changing static variables and only initialize them once.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |