Fix for player access out of its creation thread
This commit is contained in:
parent
04b75ef05f
commit
1e7e8d4121
|
@ -319,6 +319,7 @@ public class MediaSourceManager {
|
||||||
|
|
||||||
private Observable<Long> getEdgeIntervalSignal() {
|
private Observable<Long> getEdgeIntervalSignal() {
|
||||||
return Observable.interval(progressUpdateIntervalMillis, TimeUnit.MILLISECONDS)
|
return Observable.interval(progressUpdateIntervalMillis, TimeUnit.MILLISECONDS)
|
||||||
|
.observeOn(AndroidSchedulers.mainThread())
|
||||||
.filter(ignored ->
|
.filter(ignored ->
|
||||||
playbackListener.isApproachingPlaybackEdge(playbackNearEndGapMillis));
|
playbackListener.isApproachingPlaybackEdge(playbackNearEndGapMillis));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue