From fbf4425a35235acd235377606d72c603b0079ee3 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 Origin commit data ------------------ Branch: master Commit: https://github.com/neutrino-images/ni-libstb-hal/commit/052591a006132a2eaf29c0f5115d74044b3d1c90 Author: redblue-pkt Date: 2018-12-28 (Fri, 28 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 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; }