From 44d5e12c8faa1c170ed9b6b0c9e18c7547572144 Mon Sep 17 00:00:00 2001 From: James Almer Date: Wed, 14 Jul 2021 12:48:10 -0300 Subject: ffprobe: remove references to frame->pkt_pts The field was removed during the last major bump. Signed-off-by: James Almer --- fftools/ffprobe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fftools') diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c index c0fee0c2e7..2e60e47334 100644 --- a/fftools/ffprobe.c +++ b/fftools/ffprobe.c @@ -2248,8 +2248,8 @@ static void show_frame(WriterContext *w, AVFrame *frame, AVStream *stream, else print_str_opt("media_type", "unknown"); print_int("stream_index", stream->index); print_int("key_frame", frame->key_frame); - print_ts ("pkt_pts", frame->pts); - print_time("pkt_pts_time", frame->pts, &stream->time_base); + print_ts ("pts", frame->pts); + print_time("pts_time", frame->pts, &stream->time_base); print_ts ("pkt_dts", frame->pkt_dts); print_time("pkt_dts_time", frame->pkt_dts, &stream->time_base); print_ts ("best_effort_timestamp", frame->best_effort_timestamp); -- cgit v1.2.1