diff options
author | Nicolas George | 2012-09-09 16:28:51 +0200 |
---|---|---|
committer | Nicolas George | 2012-09-15 16:14:33 +0200 |
commit | 2939e258f9d1fff89b3b68536beb931b54611585 (patch) | |
tree | 86888a4d1e6a3a2be0edf5db37a7ee109868a121 /ffplay.c | |
parent | 6d8b32633e843962d84fc63875bda909d9a36f46 (diff) |
ffplay: use PTS from the AVSubtitle structure.
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1840,8 +1840,9 @@ static int subtitle_thread(void *arg) avcodec_decode_subtitle2(is->subtitle_st->codec, &sp->sub, &got_subtitle, pkt); - if (got_subtitle && sp->sub.format == 0) { + if (sp->sub.pts != AV_NOPTS_VALUE) + pts = sp->sub.pts / (double)AV_TIME_BASE; sp->pts = pts; for (i = 0; i < sp->sub.num_rects; i++) |