diff options
author | Lenny Wang <lwanghpc@gmail.com> | 2013-12-14 05:11:00 -0600 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-12-19 13:31:31 +0100 |
commit | d943330dc01f4d222dc1127d6216cd683dc41ee0 (patch) | |
tree | a8c39b3fd4066fa4bd0e384f4de177ea777c6d77 /libavfilter/deshake_opencl.h | |
parent | f5d039840aca64d0ce79cd08e64423833becf570 (diff) | |
download | ffmpeg-d943330dc01f4d222dc1127d6216cd683dc41ee0.tar.gz |
lavfi/deshake_opencl: optimze transform filter
Reviewed-by: Wei Gao <highgod0401@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/deshake_opencl.h')
-rw-r--r-- | libavfilter/deshake_opencl.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavfilter/deshake_opencl.h b/libavfilter/deshake_opencl.h index 30d17d4426..5b0a2414b8 100644 --- a/libavfilter/deshake_opencl.h +++ b/libavfilter/deshake_opencl.h @@ -23,6 +23,13 @@ #include "deshake.h" +typedef struct { + float x; + float y; + float z; + float w; +} float4; + int ff_opencl_deshake_init(AVFilterContext *ctx); void ff_opencl_deshake_uninit(AVFilterContext *ctx); |