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/crystalhd.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/crystalhd.c')
-rw-r--r-- | libavcodec/crystalhd.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavcodec/crystalhd.c b/libavcodec/crystalhd.c index 228803183a..fbfe5e8f62 100644 --- a/libavcodec/crystalhd.c +++ b/libavcodec/crystalhd.c @@ -537,11 +537,6 @@ static inline CopyRet copy_frame(AVCodecContext *avctx, frame->top_field_first = !bottom_first; frame->pts = pkt_pts; -#if FF_API_PKT_PTS -FF_DISABLE_DEPRECATION_WARNINGS - frame->pkt_pts = pkt_pts; -FF_ENABLE_DEPRECATION_WARNINGS -#endif frame->pkt_pos = -1; frame->pkt_duration = 0; |