summaryrefslogtreecommitdiff
path: root/libavfilter/vsrc_testsrc.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2023-04-12 14:18:50 -0300
committerJames Almer <jamrial@gmail.com>2023-05-04 18:15:00 -0300
commit599abc0f3a0c6a1d9746a3098cd444a45471a160 (patch)
tree651d3f6d2669c2b7f487cccb2e708a481d0213a9 /libavfilter/vsrc_testsrc.c
parent3675dd0e0c8892151441a02ed0c5dee72a111c81 (diff)
downloadffmpeg-599abc0f3a0c6a1d9746a3098cd444a45471a160.tar.gz
avutil/frame: deprecate interlaced_frame and top_field_first
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavfilter/vsrc_testsrc.c')
-rw-r--r--libavfilter/vsrc_testsrc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavfilter/vsrc_testsrc.c b/libavfilter/vsrc_testsrc.c
index cef3a9be36..c358f9ada2 100644
--- a/libavfilter/vsrc_testsrc.c
+++ b/libavfilter/vsrc_testsrc.c
@@ -185,7 +185,11 @@ static int activate(AVFilterContext *ctx)
frame->pts = test->pts;
frame->duration = 1;
frame->key_frame = 1;
+#if FF_API_INTERLACED_FRAME
+FF_DISABLE_DEPRECATION_WARNINGS
frame->interlaced_frame = 0;
+FF_ENABLE_DEPRECATION_WARNINGS
+#endif
frame->flags &= ~AV_FRAME_FLAG_INTERLACED;
frame->pict_type = AV_PICTURE_TYPE_I;
frame->sample_aspect_ratio = test->sar;