Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Frankenstone committed Jan 17, 2019
2 parents efdc09d + 659e234 commit a375cbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libeplayer3-arm/container/buff_ffmpeg.c
Expand Up @@ -53,7 +53,7 @@ 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 || 0 == PlaybackDieNow(0))
{
maxInjectedPTS = pts;
}
Expand Down

0 comments on commit a375cbe

Please sign in to comment.