diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-09-29 15:57:43 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-10-05 18:58:29 +0200 |
commit | 31a373ce71a10f50a603149e4201280996ff7ed1 (patch) | |
tree | 4eca13e4a1b76a8f068078a43a3e21acb556ec37 /libavfilter/vf_sab.c | |
parent | 71f9f7dc735eedea27839b51ca0e606b27dbe2f4 (diff) | |
download | ffmpeg-31a373ce71a10f50a603149e4201280996ff7ed1.tar.gz |
avfilter: Reindentation after query_formats changes
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/vf_sab.c')
-rw-r--r-- | libavfilter/vf_sab.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libavfilter/vf_sab.c b/libavfilter/vf_sab.c index cf6c3c511e..a70d309633 100644 --- a/libavfilter/vf_sab.c +++ b/libavfilter/vf_sab.c @@ -55,14 +55,14 @@ typedef struct SabContext { unsigned int sws_flags; } SabContext; - static const enum AVPixelFormat pix_fmts[] = { - AV_PIX_FMT_YUV420P, - AV_PIX_FMT_YUV410P, - AV_PIX_FMT_YUV444P, - AV_PIX_FMT_YUV422P, - AV_PIX_FMT_YUV411P, - AV_PIX_FMT_NONE - }; +static const enum AVPixelFormat pix_fmts[] = { + AV_PIX_FMT_YUV420P, + AV_PIX_FMT_YUV410P, + AV_PIX_FMT_YUV444P, + AV_PIX_FMT_YUV422P, + AV_PIX_FMT_YUV411P, + AV_PIX_FMT_NONE +}; #define RADIUS_MIN 0.1 #define RADIUS_MAX 4.0 |