]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/gblur.h
avcodec: Remove deprecated AVPicture API
[ffmpeg] / libavfilter / gblur.h
index 87129801dea5d09a9f59911f7375ec7fca8f2652..dce50671f621e326ef1d4726e09c1c188ea4ae9f 100644 (file)
@@ -37,6 +37,7 @@ typedef struct GBlurContext {
     int steps;
     int planes;
 
+    int flt;
     int depth;
     int planewidth[4];
     int planeheight[4];
@@ -49,7 +50,9 @@ typedef struct GBlurContext {
     float nuV;
     int nb_planes;
     void (*horiz_slice)(float *buffer, int width, int height, int steps, float nu, float bscale);
+    void (*postscale_slice)(float *buffer, int length, float postscale, float min, float max);
 } GBlurContext;
+
 void ff_gblur_init(GBlurContext *s);
 void ff_gblur_init_x86(GBlurContext *s);
 #endif