-
Notifications
You must be signed in to change notification settings - Fork 502
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
**Video Renderer Never Gets Ready on Fast Channel Change (Media3 v1.5.1)** #2280
Comments
|
Also, how to use Software Decoders? |
|
So omx.bcm is this software or hardware decoder?
…On Fri, 28 Mar, 2025, 10:21 pm linhai326, ***@***.***> wrote:
Also, how to use Software Decoders? How can i check, which decoder is
being used?
- you could extend the MediaCodecSelector class and write your own
getDecoderInfos() to return software decoders.
- in callbacks like videoDecoderInitialized, it will print out the
decoder you use. for example, in your log,
videoDecoderInitialized [eventTime=340.90, mediaPos=0.00, window=0,
period=0, OMX.bcm.vdec.avc]
OMX.bcm.vdec.avc is used.
—
Reply to this email directly, view it on GitHub
<#2280 (comment)>,
or unsubscribe
* This message originated outside of DISH and was sent by:
***@***.*** ***@***.***> *
------------------------------
<https://github.com/notifications/unsubscribe-auth/BERVOZXDOWYDGTGTBHZAXZL2WV4YRAVCNFSM6AAAAABZ6UV2C6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDONRRHEYTCNJVGM>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
[image: linhai326]*linhai326* left a comment (androidx/media#2280)
<#2280 (comment)>
Also, how to use Software Decoders? How can i check, which decoder is
being used?
- you could extend the MediaCodecSelector class and write your own
getDecoderInfos() to return software decoders.
- in callbacks like videoDecoderInitialized, it will print out the
decoder you use. for example, in your log,
videoDecoderInitialized [eventTime=340.90, mediaPos=0.00, window=0,
period=0, OMX.bcm.vdec.avc]
OMX.bcm.vdec.avc is used.
—
Reply to this email directly, view it on GitHub
<#2280 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BERVOZXDOWYDGTGTBHZAXZL2WV4YRAVCNFSM6AAAAABZ6UV2C6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDONRRHEYTCNJVGM>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
it should be a hardware decoder. You can take a look at the mediaCodeInfo class: |
And info, on player not playing
All renderers except video renderer is not ready. Why this happening
…On Fri, 28 Mar, 2025, 10:31 pm linhai326, ***@***.***> wrote:
So omx.bcm is this software or hardware decoder?
… <#m_-4653863619593798184_>
it should be a hardware decoder. You can take a look at the mediaCodeInfo
class:
https://github.com/androidx/media/blob/release/libraries/exoplayer/src/main/java/androidx/media3/exoplayer/mediacodec/MediaCodecInfo.java
check for:
public final boolean hardwareAccelerated;
public final boolean softwareOnly;
—
Reply to this email directly, view it on GitHub
<#2280 (comment)>,
or unsubscribe
* This message originated outside of DISH and was sent by:
***@***.*** ***@***.***> *
------------------------------
<https://github.com/notifications/unsubscribe-auth/BERVOZUZVNZVXI6E5Z2J6UT2WV55HAVCNFSM6AAAAABZ6UV2C6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDONRRHEZTEOBSGU>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
[image: linhai326]*linhai326* left a comment (androidx/media#2280)
<#2280 (comment)>
So omx.bcm is this software or hardware decoder?
… <#m_-4653863619593798184_>
it should be a hardware decoder. You can take a look at the mediaCodeInfo
class:
https://github.com/androidx/media/blob/release/libraries/exoplayer/src/main/java/androidx/media3/exoplayer/mediacodec/MediaCodecInfo.java
check for:
public final boolean hardwareAccelerated;
public final boolean softwareOnly;
—
Reply to this email directly, view it on GitHub
<#2280 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BERVOZUZVNZVXI6E5Z2J6UT2WV55HAVCNFSM6AAAAABZ6UV2C6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDONRRHEZTEOBSGU>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
The videoRenderer never gets ready during the fast channel change process. From the logs, we can see that the renderer is initialized, but playback does not start, and the rendererReady event never fires for the video , isLoading=false and player never plays. |
Can we force media3 to use either Hardware Decoder or Software Decoder? |
Thank you for reporting your issue. First of all, are you able to reproduce this issue with the ExoPlayer demo application? If yes, could you please supply a bug report of the issue reproduced with the demo application? If you cannot provide it publicly then please send it to [email protected] with the subject Issue #2280.
Yes, you can override the default codec selection processes. Here is a link to another github thread where it is described in additional detail, #1460 (comment). The app should override [MediaCodecVideoRenderer.getDecoderInfos()] roughly as follows:
Please also update this issue to indicate you've sent the bug report! |
Description:
I am using Media3 v1.5.1 and a single player instance for playback. On fast channel changes, sometimes the video renderer never gets ready, and playback never starts. Below are the logs of the issue, including video and audio rendering events.
Logs:
Issue:
The
videoRenderer
never gets ready during the fast channel change process. From the logs, we can see that the renderer is initialized, but playback does not start, and therendererReady
event never fires for the video , isLoading=false and player never plays.rendererReady
for video never occurs during channel switch.isFirstFrameRendered
isfalse
, indicating no frames have been rendered, despite the video decoder being initialized.Steps to Reproduce:
Expected Behavior:
What I’ve Tried:
Player Version:
The text was updated successfully, but these errors were encountered: