summaryrefslogtreecommitdiff
path: root/libavfilter/gblur.h
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2021-02-13 11:15:22 +0100
committerPaul B Mahol <onemda@gmail.com>2021-02-16 21:12:11 +0100
commit058db59e164dc420239beac054212a1b1933a01d (patch)
tree316c248b1db0ab73ad1e3551dfceb620782ccc2c /libavfilter/gblur.h
parentd0b6b1f941cd876066bd76322cd2976a961302ef (diff)
downloadffmpeg-058db59e164dc420239beac054212a1b1933a01d.tar.gz
avfilter/vf_gblur: factor out postscale function
Diffstat (limited to 'libavfilter/gblur.h')
-rw-r--r--libavfilter/gblur.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/gblur.h b/libavfilter/gblur.h
index 15a8167fe5..dce50671f6 100644
--- a/libavfilter/gblur.h
+++ b/libavfilter/gblur.h
@@ -50,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