Signed-off-by: Thilo Graf <dbt@novatux.de>

Commit was:
arm: finally fix play next file
adab40123e
This commit is contained in:
redblue-pkt
2019-01-15 21:33:17 +01:00
committed by Thilo Graf
parent d8b3a2d5b4
commit 0435571728

View File

@@ -53,10 +53,10 @@ static int64_t update_max_injected_pts(int64_t pts)
{ {
if (pts > 0 && pts != INVALID_PTS_VALUE) if (pts > 0 && pts != INVALID_PTS_VALUE)
{ {
//if (maxInjectedPTS == INVALID_PTS_VALUE || pts > maxInjectedPTS) if (maxInjectedPTS == INVALID_PTS_VALUE || pts > maxInjectedPTS || 0 == PlaybackDieNow(0))
//{ {
maxInjectedPTS = pts; maxInjectedPTS = pts;
//} }
} }
return maxInjectedPTS; return maxInjectedPTS;
} }