-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Significant frame drop while playing 1920x1080 HLS video tracks on AFTSSS and AFTSS #115
Comments
I've also opened this issue on the ExoPlayer repo google/ExoPlayer#9565 It appears the original bug report I submitted here may not have all the necessary info to debug the issue. If generating another bug report would be helpful, let me know. |
Hi @Koster35, can you share the adb logcat with us and the FOS version running on your Fire TV Stick-3rd Gen(2020), Fire TV Stick Lite-1st Gen(2020) to help fast track this? |
Here is that info using the ExoPlayer Amazon port r2.13.3 demo app playing the same sample as above https://bitdash-a.akamaihd.net/content/MI201109210084_1/m3u8s/f08e80da-bf1d-4e3d-8899-f0f6155f6efa.m3u8 Device: Fire TV Stick Lite - 1st Gen (2020) (AFTSS) Device: Fire TV Stick - 3rd Gen (2020) (AFTSSS) Thanks! |
We are seeing the same issue on many of our fire devices as well. Looking forward to seeing a resolution to this ticket. Thanks for addressing it! |
I'm also seeing this issue when testing exoplayer. Hopefully there's a fix for this soon. |
As a result of this bug, we have had to downgrade the video quality served to all Amazon device users. A fast resolution to this issue would be greatly appreciated. |
PiperOrigin-RevId: 463852948 (cherry picked from commit 9ed04ef84223e2cc54aab8318b4b64be288d264a)
I am seeing the sane issue on exoplayer too. waiting for a solution``` |
[REQUIRED] Issue description
Fire TV Stick - 3rd Gen (2020) (AFTSSS) and Fire TV Stick Lite - 1st Gen (2020) (AFTSS) consistently drop frames while playing 1920x1080 video tracks in HLS streams.
This issue started when we upgraded our ExoPlayer Amazon port version from v2.10.6 to v2.11.3. The issue also occurs on v2.12.1.
After some debugging, I have some insight as to why this started in v2.11:
In both v2.10 and v2.11, ExoPlayer's
MediaCodecVideoRenderer.getDecoderInfos()
method call returns a list of decoders available on the device. On v2.10, the order of the codecs was always returned in the following order, on both of these Fire Stick devices:[OMX.MTK.VIDEO.DECODER.AVC, OMX.google.h264.decoder]
So, to decode our HLS stream, the ExoPlayer would choose the first decoder in the list, OMX.MTK.VIDEO.DECODER.AVC (the hardware decoder). When the ExoPlayer checks the Format of our 1920x1080 video track in the HLS stream against this hardware codec, it returns that the hardware codec does not support the 1920x1080 video track. So, it would never attempt to play the 1920x1080 video track.
Starting in ExoPlayer v2.11, the ExoPlayer's
MediaCodecVideoRenderer.getDecoderInfos()
implementation changed. This method started sorting the list of decoders by 'Format' support.The sorting recognizes that the hardware decoder (OMX.MTK.VIDEO.DECODER.AVC) does not support the 1920x1080 video track in our HLS stream, but the software decoder (OMX.google.h264.decoder) does, so the sorting method call sorts the list of available decoders into the following order: [OMX.google.h264.decoder, OMX.MTK.VIDEO.DECODER.AVC]. The ExoPlayer then chooses the first decoder in the list, the software decoder, to decode the 1920x1080 video track. However, during playback, there is nearly constant frame drop causing a bad experience for the user.
I don't know what's causing the software codec to perform so poorly, but there are logs indicating frames being dropped:
I also don't know why these two Fire Sticks are reporting that their hardware codec does not support the 1920x1080 video track. Seemingly, the same OMX.MTK.VIDEO.DECODER.AVC hardware codec can play 1920x1080 video tracks on the Fire TV Stick - 2nd Gen (2016-2019) (AFTT), but not on the newer models.
Finally, this may be related to #42 but I'm not sure.
[REQUIRED] Reproduction steps
This does not reproduce with the Apple HLS samples in the demo app. However, you can reproduce it in the demo app using this sample I found on Bitmovin's website: https://bitdash-a.akamaihd.net/content/MI201109210084_1/m3u8s/f08e80da-bf1d-4e3d-8899-f0f6155f6efa.m3u8
Notice the choppiness of the video and the logs being printed. If the issue does not reproduce the first time, try:
[REQUIRED] Link to test content
https://bitdash-a.akamaihd.net/content/MI201109210084_1/m3u8s/f08e80da-bf1d-4e3d-8899-f0f6155f6efa.m3u8
I can provide our production HLS streams if more than this sample is needed.
[REQUIRED] A full bug report captured from the device
Fire TV Stick Lite - 1st Gen (2020) (AFTSS): bugreport-sheldon-PS7234-2021-05-05-16-39-26.zip
[REQUIRED] Version of ExoPlayer being used
v2.12.1 Amazon port
v2.11.3 Amazon port
It seems to reproduce in all ExoPlayer versions (Amazon port or not) starting with v2.11.
[REQUIRED] Device(s) and version(s) of Android being used
The text was updated successfully, but these errors were encountered: