arm: finally fix play next file

This commit is contained in:
redblue-pkt
2018-12-28 22:22:58 +01:00
committed by Thilo Graf
parent e20d19138e
commit adab40123e

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)
{ //{
maxInjectedPTS = pts; maxInjectedPTS = pts;
} //}
} }
return maxInjectedPTS; return maxInjectedPTS;
} }