You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Android Q has added new isHardwareAccelerated, isSoftwareOnly and isVendor methods to MediaCodecInfo. We should consider:
Surfacing this information in ExoPlayer's MediaCodecInfo. It would probably make sense for us to approximate this information for earlier API levels as well (e.g. based on decoder name).
Once this information is surfaced, we should potentially look at whether it should be factored into track selection decisions. For example, preferring H264 over HEVC in cases where the H264 decoder is hardware and the HEVC decoder is software.
The text was updated successfully, but these errors were encountered:
- Surface information provided by methods isHardwareAccelerated,
isSoftwareOnly and isVendor added in Android Q in MediaCodecInfo
class.
- Estimate this information based on the codec name for earlier API
levels.
Issue:#5839
PiperOrigin-RevId: 266334850
Android Q has added new
isHardwareAccelerated
,isSoftwareOnly
andisVendor
methods toMediaCodecInfo
. We should consider:MediaCodecInfo
. It would probably make sense for us to approximate this information for earlier API levels as well (e.g. based on decoder name).The text was updated successfully, but these errors were encountered: