summaryrefslogtreecommitdiff
path: root/fftools/ffprobe.c
diff options
context:
space:
mode:
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);