aboutsummaryrefslogtreecommitdiffstats
path: root/fftools/ffmpeg_filter.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2024-01-20 12:39:15 -0300
committerJames Almer <jamrial@gmail.com>2024-03-07 08:53:30 -0300
commitb8fef7e9c520b3923b32813b6a82c154c74402dc (patch)
tree935d7d7e806877940651d817dd1da683e8616faa /fftools/ffmpeg_filter.c
parent4c92fc02f850f4f813e8cef8f8f8ed37d498e090 (diff)
downloadffmpeg-b8fef7e9c520b3923b32813b6a82c154c74402dc.tar.gz
avutil: remove deprecated FF_API_PKT_DURATION
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'fftools/ffmpeg_filter.c')
-rw-r--r--fftools/ffmpeg_filter.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/fftools/ffmpeg_filter.c b/fftools/ffmpeg_filter.c
index 13c5065191..960393b943 100644
--- a/fftools/ffmpeg_filter.c
+++ b/fftools/ffmpeg_filter.c
@@ -2666,11 +2666,6 @@ static int send_frame(FilterGraph *fg, FilterGraphThread *fgt,
frame->pts = av_rescale_q(frame->pts, frame->time_base, ifp->time_base);
frame->duration = av_rescale_q(frame->duration, frame->time_base, ifp->time_base);
frame->time_base = ifp->time_base;
-#if LIBAVUTIL_VERSION_MAJOR < 59
- AV_NOWARN_DEPRECATED(
- frame->pkt_duration = frame->duration;
- )
-#endif
fd = frame_data(frame);
if (!fd)