]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_smartblur.c
avfilter: don't anonymously typedef structs
[ffmpeg] / libavfilter / vf_smartblur.c
index 117e0ec6018549e9bea87ca9a50854caf4220714..1955ac43d89bacf2c23281ff8fb555127c3c2c78 100644 (file)
@@ -42,7 +42,7 @@
 #define THRESHOLD_MIN -30
 #define THRESHOLD_MAX 30
 
-typedef struct {
+typedef struct FilterParam {
     float              radius;
     float              strength;
     int                threshold;
@@ -50,7 +50,7 @@ typedef struct {
     struct SwsContext *filter_context;
 } FilterParam;
 
-typedef struct {
+typedef struct SmartblurContext {
     const AVClass *class;
     FilterParam  luma;
     FilterParam  chroma;