X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavfilter%2Fvf_sab.c;h=6f6365416165b40e2d2c1e44791897f0ac8c8441;hb=19bb2cade5c8a9d7e666b9b668f7bb8f28e8b759;hp=3f0951f32a0484ab63f1081ce35db439b347f1fe;hpb=20e72faef6946cde8e59981ef511b824a01c5adb;p=ffmpeg diff --git a/libavfilter/vf_sab.c b/libavfilter/vf_sab.c index 3f0951f32a0..6f636541616 100644 --- a/libavfilter/vf_sab.c +++ b/libavfilter/vf_sab.c @@ -31,7 +31,7 @@ #include "formats.h" #include "internal.h" -typedef struct { +typedef struct FilterParam { float radius; float pre_filter_radius; float strength; @@ -46,7 +46,7 @@ typedef struct { int color_diff_coeff[COLOR_DIFF_COEFF_SIZE]; } FilterParam; -typedef struct { +typedef struct SabContext { const AVClass *class; FilterParam luma; FilterParam chroma;