summaryrefslogtreecommitdiff
path: root/fftools/ffprobe.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2021-07-14 12:48:10 -0300
committerJames Almer <jamrial@gmail.com>2021-08-07 10:16:07 -0300
commit44d5e12c8faa1c170ed9b6b0c9e18c7547572144 (patch)
treea67f96530f657a6425f95fd8608a3f9ca6e4611c /fftools/ffprobe.c
parent6b11c12cf33b9761c3ac460737728228e86e9f04 (diff)
ffprobe: remove references to frame->pkt_pts
The field was removed during the last major bump. Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'fftools/ffprobe.c')
-rw-r--r--fftools/ffprobe.c4
1 files changed, 2 insertions, 2 deletions
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);