mirror of
https://github.com/samsonjs/media.git
synced 2026-03-26 09:35:47 +00:00
Add additional codecs to the eosPropagationWorkaround list.
Issue: google/ExoPlayer#10756 PiperOrigin-RevId: 489236336
This commit is contained in:
parent
d4c9199a61
commit
cbcdbfe021
1 changed files with 5 additions and 1 deletions
|
|
@ -2431,7 +2431,11 @@ public abstract class MediaCodecRenderer extends BaseRenderer {
|
|||
|| (Util.SDK_INT <= 17 && "OMX.allwinner.video.decoder.avc".equals(name))
|
||||
|| (Util.SDK_INT <= 29
|
||||
&& ("OMX.broadcom.video_decoder.tunnel".equals(name)
|
||||
|| "OMX.broadcom.video_decoder.tunnel.secure".equals(name)))
|
||||
|| "OMX.broadcom.video_decoder.tunnel.secure".equals(name)
|
||||
|| "OMX.bcm.vdec.avc.tunnel".equals(name)
|
||||
|| "OMX.bcm.vdec.avc.tunnel.secure".equals(name)
|
||||
|| "OMX.bcm.vdec.hevc.tunnel".equals(name)
|
||||
|| "OMX.bcm.vdec.hevc.tunnel.secure".equals(name)))
|
||||
|| ("Amazon".equals(Util.MANUFACTURER) && "AFTS".equals(Util.MODEL) && codecInfo.secure);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue