From adab40123e2bae3de02184bc1531e0a5e34ed59a Mon Sep 17 00:00:00 2001 From: redblue-pkt Date: Fri, 28 Dec 2018 22:22:58 +0100 Subject: [PATCH] arm: finally fix play next file --- libeplayer3-arm/container/buff_ffmpeg.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libeplayer3-arm/container/buff_ffmpeg.c b/libeplayer3-arm/container/buff_ffmpeg.c index 3386b7f..506aca3 100644 --- a/libeplayer3-arm/container/buff_ffmpeg.c +++ b/libeplayer3-arm/container/buff_ffmpeg.c @@ -53,10 +53,10 @@ static int64_t update_max_injected_pts(int64_t pts) { if (pts > 0 && pts != INVALID_PTS_VALUE) { - if (maxInjectedPTS == INVALID_PTS_VALUE || pts > maxInjectedPTS) - { + //if (maxInjectedPTS == INVALID_PTS_VALUE || pts > maxInjectedPTS) + //{ maxInjectedPTS = pts; - } + //} } return maxInjectedPTS; }