From 3bac982021ccf6388921a5e1b4e8a6774956f091 Mon Sep 17 00:00:00 2001 From: redblue-pkt Date: Mon, 10 Dec 2018 12:29:07 +0100 Subject: [PATCH] update arm: finally fix play next file Origin commit data ------------------ Branch: master Commit: https://github.com/neutrino-images/ni-libstb-hal/commit/09df16f78a5198b5ec3327ed1646842ccff968b0 Author: redblue-pkt Date: 2018-12-10 (Mon, 10 Dec 2018) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- 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 cf498cb..26b37d0 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; }