From 347c09b30b3cec125bb42178101dbc55cce2f873 Mon Sep 17 00:00:00 2001 From: Matthias Reichl Date: Sat, 1 Apr 2023 17:46:52 +0200 Subject: [PATCH] ffmpeg: update vf-deinterlace-v4l2m2m patch Patch created using revisions ea3d24b..d38cb51 from branch vf-deinterlace-v4l2m2m-n6.0 of https://github.com/jernejsk/FFmpeg --- .../ffmpeg-001-vf-deinterlace-v4l2m2m.patch | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/multimedia/ffmpeg/patches/vf-deinterlace-v4l2m2m/ffmpeg-001-vf-deinterlace-v4l2m2m.patch b/packages/multimedia/ffmpeg/patches/vf-deinterlace-v4l2m2m/ffmpeg-001-vf-deinterlace-v4l2m2m.patch index f7cf92b57b..f13b861a32 100644 --- a/packages/multimedia/ffmpeg/patches/vf-deinterlace-v4l2m2m/ffmpeg-001-vf-deinterlace-v4l2m2m.patch +++ b/packages/multimedia/ffmpeg/patches/vf-deinterlace-v4l2m2m/ffmpeg-001-vf-deinterlace-v4l2m2m.patch @@ -1,4 +1,4 @@ -From d14859b090dc3b2e1bd761698b947b0b55e4d831 Mon Sep 17 00:00:00 2001 +From d38cb51a9362250b53aa9c7637b17d90718f5f65 Mon Sep 17 00:00:00 2001 From: Jernej Skrabec Date: Tue, 3 Dec 2019 21:01:18 +0100 Subject: [PATCH] Add V4L2 m2m deinterlace filter @@ -12,22 +12,22 @@ Signed-off-by: Alex Bee create mode 100644 libavfilter/vf_deinterlace_v4l2m2m.c diff --git a/libavfilter/Makefile b/libavfilter/Makefile -index 30cc329fb6..2fe6ab223e 100644 +index b3d3d981dd..9103e3b395 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile -@@ -254,6 +254,7 @@ OBJS-$(CONFIG_DEFLATE_FILTER) += vf_neighbor.o +@@ -262,6 +262,7 @@ OBJS-$(CONFIG_DEFLATE_FILTER) += vf_neighbor.o OBJS-$(CONFIG_DEFLICKER_FILTER) += vf_deflicker.o - OBJS-$(CONFIG_DEINTERLACE_QSV_FILTER) += vf_deinterlace_qsv.o + OBJS-$(CONFIG_DEINTERLACE_QSV_FILTER) += vf_vpp_qsv.o OBJS-$(CONFIG_DEINTERLACE_VAAPI_FILTER) += vf_deinterlace_vaapi.o vaapi_vpp.o +OBJS-$(CONFIG_DEINTERLACE_V4L2M2M_FILTER) += vf_deinterlace_v4l2m2m.o OBJS-$(CONFIG_DEJUDDER_FILTER) += vf_dejudder.o OBJS-$(CONFIG_DELOGO_FILTER) += vf_delogo.o OBJS-$(CONFIG_DENOISE_VAAPI_FILTER) += vf_misc_vaapi.o vaapi_vpp.o diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c -index 5ebacfde27..4b74bac3c8 100644 +index d7db46c2af..075f065f3c 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c -@@ -234,6 +234,7 @@ extern const AVFilter ff_vf_dedot; +@@ -240,6 +240,7 @@ extern const AVFilter ff_vf_dedot; extern const AVFilter ff_vf_deflate; extern const AVFilter ff_vf_deflicker; extern const AVFilter ff_vf_deinterlace_qsv;