summaryrefslogtreecommitdiff
path: root/libavfilter/vf_kerndeint.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-09-29 15:57:43 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-10-05 18:58:29 +0200
commit31a373ce71a10f50a603149e4201280996ff7ed1 (patch)
tree4eca13e4a1b76a8f068078a43a3e21acb556ec37 /libavfilter/vf_kerndeint.c
parent71f9f7dc735eedea27839b51ca0e606b27dbe2f4 (diff)
avfilter: Reindentation after query_formats changes
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/vf_kerndeint.c')
-rw-r--r--libavfilter/vf_kerndeint.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/libavfilter/vf_kerndeint.c b/libavfilter/vf_kerndeint.c
index 54e3cb02ff..dd320fbebf 100644
--- a/libavfilter/vf_kerndeint.c
+++ b/libavfilter/vf_kerndeint.c
@@ -66,15 +66,15 @@ static av_cold void uninit(AVFilterContext *ctx)
av_freep(&kerndeint->tmp_data[0]);
}
- static const enum AVPixelFormat pix_fmts[] = {
- AV_PIX_FMT_YUV420P,
- AV_PIX_FMT_YUYV422,
- AV_PIX_FMT_ARGB, AV_PIX_FMT_0RGB,
- AV_PIX_FMT_ABGR, AV_PIX_FMT_0BGR,
- AV_PIX_FMT_RGBA, AV_PIX_FMT_RGB0,
- AV_PIX_FMT_BGRA, AV_PIX_FMT_BGR0,
- AV_PIX_FMT_NONE
- };
+static const enum AVPixelFormat pix_fmts[] = {
+ AV_PIX_FMT_YUV420P,
+ AV_PIX_FMT_YUYV422,
+ AV_PIX_FMT_ARGB, AV_PIX_FMT_0RGB,
+ AV_PIX_FMT_ABGR, AV_PIX_FMT_0BGR,
+ AV_PIX_FMT_RGBA, AV_PIX_FMT_RGB0,
+ AV_PIX_FMT_BGRA, AV_PIX_FMT_BGR0,
+ AV_PIX_FMT_NONE
+};
static int config_props(AVFilterLink *inlink)
{