[FFmpeg-cvslog] ffplay: use frame->pkt_pts instead of pkt->pts in audio pts calculation
Marton Balint
git at videolan.org
Mon Jul 1 02:47:45 CEST 2013
ffmpeg | branch: master | Marton Balint <cus at passwd.hu> | Sat Jun 29 12:44:47 2013 +0200| [447d2e31d167ebd6856c492f762a98aa56df8b58] | committer: Marton Balint
ffplay: use frame->pkt_pts instead of pkt->pts in audio pts calculation
Fixes ticket #2717.
Signed-off-by: Marton Balint <cus at passwd.hu>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=447d2e31d167ebd6856c492f762a98aa56df8b58
---
ffplay.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ffplay.c b/ffplay.c
index 946e9b3..37623a4 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -2177,8 +2177,8 @@ static int audio_decode_frame(VideoState *is)
tb = (AVRational){1, is->frame->sample_rate};
if (is->frame->pts != AV_NOPTS_VALUE)
is->frame->pts = av_rescale_q(is->frame->pts, dec->time_base, tb);
- if (is->frame->pts == AV_NOPTS_VALUE && pkt_temp->pts != AV_NOPTS_VALUE)
- is->frame->pts = av_rescale_q(pkt_temp->pts, is->audio_st->time_base, tb);
+ else if (is->frame->pkt_pts != AV_NOPTS_VALUE)
+ is->frame->pts = av_rescale_q(is->frame->pkt_pts, is->audio_st->time_base, tb);
if (pkt_temp->pts != AV_NOPTS_VALUE)
pkt_temp->pts += (double) is->frame->nb_samples / is->frame->sample_rate / av_q2d(is->audio_st->time_base);
More information about the ffmpeg-cvslog
mailing list