diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-03-06 20:40:41 +0100 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-04-27 10:43:13 -0300 |
commit | 6e30b35b85b81c802e52a1078ec7a3097e353c6d (patch) | |
tree | ee16d29abe46a5d27abc8e42f051d5d44b98cf9c /libavcodec/cuviddec.c | |
parent | 3b56fa85e8f50db83b54518ae31ebdb3f6b0cc39 (diff) | |
download | ffmpeg-6e30b35b85b81c802e52a1078ec7a3097e353c6d.tar.gz |
avutil/frame: Remove deprecated AVFrame.pkt_pts field
Deprecated in 32c8359093d1ff4f45ed19518b449b3ac3769d27.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/cuviddec.c')
-rw-r--r-- | libavcodec/cuviddec.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavcodec/cuviddec.c b/libavcodec/cuviddec.c index ec57afdefe..1e5e3ea9a6 100644 --- a/libavcodec/cuviddec.c +++ b/libavcodec/cuviddec.c @@ -614,11 +614,6 @@ static int cuvid_output_frame(AVCodecContext *avctx, AVFrame *frame) /* CUVIDs opaque reordering breaks the internal pkt logic. * So set pkt_pts and clear all the other pkt_ fields. */ -#if FF_API_PKT_PTS -FF_DISABLE_DEPRECATION_WARNINGS - frame->pkt_pts = frame->pts; -FF_ENABLE_DEPRECATION_WARNINGS -#endif frame->pkt_pos = -1; frame->pkt_duration = 0; frame->pkt_size = -1; |