mirror of
https://github.com/samsonjs/media.git
synced 2026-03-26 09:35:47 +00:00
Add brackets to make expression clearer.
This commit is contained in:
parent
712e46085d
commit
d2e73dd566
1 changed files with 1 additions and 1 deletions
|
|
@ -673,7 +673,7 @@ public abstract class MediaCodecTrackRenderer extends TrackRenderer {
|
|||
@Override
|
||||
protected boolean isReady() {
|
||||
return format != null && !waitingForKeys
|
||||
&& sourceState != SOURCE_STATE_NOT_READY || outputIndex >= 0 || isWithinHotswapPeriod();
|
||||
&& (sourceState != SOURCE_STATE_NOT_READY || outputIndex >= 0 || isWithinHotswapPeriod());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue