summaryrefslogtreecommitdiff
path: root/fftools
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2023-01-12 08:53:51 -0300
committerAnton Khirnov <anton@khirnov.net>2023-02-09 15:35:14 +0100
commit0a95e4af998e2ff096331ee338a4d6caf490394c (patch)
tree23a117d7b7e77eb6f4223710dfd711eabba9c5ec /fftools
parent719a93f4e40b202c5b74b58bcff85395a3edd0c7 (diff)
downloadffmpeg-0a95e4af998e2ff096331ee338a4d6caf490394c.tar.gz
avutil/version: postpone the remaining API deprecations
They are too recent. Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'fftools')
-rw-r--r--fftools/ffprobe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c
index 06013fd6fa..f5ac5c1554 100644
--- a/fftools/ffprobe.c
+++ b/fftools/ffprobe.c
@@ -2589,7 +2589,7 @@ static void show_frame(WriterContext *w, AVFrame *frame, AVStream *stream,
print_time("pkt_dts_time", frame->pkt_dts, &stream->time_base);
print_ts ("best_effort_timestamp", frame->best_effort_timestamp);
print_time("best_effort_timestamp_time", frame->best_effort_timestamp, &stream->time_base);
-#if LIBAVUTIL_VERSION_MAJOR < 58
+#if LIBAVUTIL_VERSION_MAJOR < 59
AV_NOWARN_DEPRECATED(
print_duration_ts ("pkt_duration", frame->pkt_duration);
print_duration_time("pkt_duration_time", frame->pkt_duration, &stream->time_base);