You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-25 14:23:15 +02:00
ffplay: fix build with disabled avfilter
Got broken in b383498e
.
Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
4
ffplay.c
4
ffplay.c
@ -2175,7 +2175,11 @@ static int audio_decode_frame(VideoState *is)
|
|||||||
else if (is->frame->pkt_pts != AV_NOPTS_VALUE)
|
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);
|
is->frame->pts = av_rescale_q(is->frame->pkt_pts, is->audio_st->time_base, tb);
|
||||||
else if (is->audio_frame_next_pts != AV_NOPTS_VALUE)
|
else if (is->audio_frame_next_pts != AV_NOPTS_VALUE)
|
||||||
|
#if CONFIG_AVFILTER
|
||||||
is->frame->pts = av_rescale_q(is->audio_frame_next_pts, (AVRational){1, is->audio_filter_src.freq}, tb);
|
is->frame->pts = av_rescale_q(is->audio_frame_next_pts, (AVRational){1, is->audio_filter_src.freq}, tb);
|
||||||
|
#else
|
||||||
|
is->frame->pts = av_rescale_q(is->audio_frame_next_pts, (AVRational){1, is->audio_src.freq}, tb);
|
||||||
|
#endif
|
||||||
|
|
||||||
if (is->frame->pts != AV_NOPTS_VALUE)
|
if (is->frame->pts != AV_NOPTS_VALUE)
|
||||||
is->audio_frame_next_pts = is->frame->pts + is->frame->nb_samples;
|
is->audio_frame_next_pts = is->frame->pts + is->frame->nb_samples;
|
||||||
|
Reference in New Issue
Block a user