Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
581bafa8
Commit
581bafa8
authored
Jun 30, 2018
by
Danil Iashchenko
Committed by
Mark Thompson
Jul 02, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi: add sobel, prewitt, roberts filters
Add opencl version of sobel, prewitt, roberts filters.
parent
54b425a7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
283 additions
and
46 deletions
+283
-46
configure
configure
+3
-0
Makefile
libavfilter/Makefile
+7
-1
allfilters.c
libavfilter/allfilters.c
+3
-0
convolution.cl
libavfilter/opencl/convolution.cl
+82
-0
vf_convolution_opencl.c
libavfilter/vf_convolution_opencl.c
+188
-45
No files found.
configure
View file @
581bafa8
...
@@ -3372,12 +3372,14 @@ perspective_filter_deps="gpl"
...
@@ -3372,12 +3372,14 @@ perspective_filter_deps="gpl"
phase_filter_deps
=
"gpl"
phase_filter_deps
=
"gpl"
pp7_filter_deps
=
"gpl"
pp7_filter_deps
=
"gpl"
pp_filter_deps
=
"gpl postproc"
pp_filter_deps
=
"gpl postproc"
prewitt_opencl_filter_deps
=
"opencl"
procamp_vaapi_filter_deps
=
"vaapi VAProcPipelineParameterBuffer"
procamp_vaapi_filter_deps
=
"vaapi VAProcPipelineParameterBuffer"
program_opencl_filter_deps
=
"opencl"
program_opencl_filter_deps
=
"opencl"
pullup_filter_deps
=
"gpl"
pullup_filter_deps
=
"gpl"
removelogo_filter_deps
=
"avcodec avformat swscale"
removelogo_filter_deps
=
"avcodec avformat swscale"
repeatfields_filter_deps
=
"gpl"
repeatfields_filter_deps
=
"gpl"
resample_filter_deps
=
"avresample"
resample_filter_deps
=
"avresample"
roberts_opencl_filter_deps
=
"opencl"
rubberband_filter_deps
=
"librubberband"
rubberband_filter_deps
=
"librubberband"
sab_filter_deps
=
"gpl swscale"
sab_filter_deps
=
"gpl swscale"
scale2ref_filter_deps
=
"swscale"
scale2ref_filter_deps
=
"swscale"
...
@@ -3396,6 +3398,7 @@ showspectrumpic_filter_deps="avcodec"
...
@@ -3396,6 +3398,7 @@ showspectrumpic_filter_deps="avcodec"
showspectrumpic_filter_select
=
"fft"
showspectrumpic_filter_select
=
"fft"
signature_filter_deps
=
"gpl avcodec avformat"
signature_filter_deps
=
"gpl avcodec avformat"
smartblur_filter_deps
=
"gpl swscale"
smartblur_filter_deps
=
"gpl swscale"
sobel_opencl_filter_deps
=
"opencl"
sofalizer_filter_deps
=
"libmysofa avcodec"
sofalizer_filter_deps
=
"libmysofa avcodec"
sofalizer_filter_select
=
"fft"
sofalizer_filter_select
=
"fft"
spectrumsynth_filter_deps
=
"avcodec"
spectrumsynth_filter_deps
=
"avcodec"
...
...
libavfilter/Makefile
View file @
581bafa8
...
@@ -171,7 +171,7 @@ OBJS-$(CONFIG_COLORMATRIX_FILTER) += vf_colormatrix.o
...
@@ -171,7 +171,7 @@ OBJS-$(CONFIG_COLORMATRIX_FILTER) += vf_colormatrix.o
OBJS-$(CONFIG_COLORSPACE_FILTER)
+=
vf_colorspace.o
colorspace.o
colorspacedsp.o
OBJS-$(CONFIG_COLORSPACE_FILTER)
+=
vf_colorspace.o
colorspace.o
colorspacedsp.o
OBJS-$(CONFIG_CONVOLUTION_FILTER)
+=
vf_convolution.o
OBJS-$(CONFIG_CONVOLUTION_FILTER)
+=
vf_convolution.o
OBJS-$(CONFIG_CONVOLUTION_OPENCL_FILTER)
+=
vf_convolution_opencl.o
opencl.o
\
OBJS-$(CONFIG_CONVOLUTION_OPENCL_FILTER)
+=
vf_convolution_opencl.o
opencl.o
\
opencl/convolution.o
opencl/convolution.o
OBJS-$(CONFIG_CONVOLVE_FILTER)
+=
vf_convolve.o
framesync.o
OBJS-$(CONFIG_CONVOLVE_FILTER)
+=
vf_convolve.o
framesync.o
OBJS-$(CONFIG_COPY_FILTER)
+=
vf_copy.o
OBJS-$(CONFIG_COPY_FILTER)
+=
vf_copy.o
OBJS-$(CONFIG_COREIMAGE_FILTER)
+=
vf_coreimage.o
OBJS-$(CONFIG_COREIMAGE_FILTER)
+=
vf_coreimage.o
...
@@ -294,6 +294,8 @@ OBJS-$(CONFIG_PP_FILTER) += vf_pp.o
...
@@ -294,6 +294,8 @@ OBJS-$(CONFIG_PP_FILTER) += vf_pp.o
OBJS-$(CONFIG_PP7_FILTER)
+=
vf_pp7.o
OBJS-$(CONFIG_PP7_FILTER)
+=
vf_pp7.o
OBJS-$(CONFIG_PREMULTIPLY_FILTER)
+=
vf_premultiply.o
framesync.o
OBJS-$(CONFIG_PREMULTIPLY_FILTER)
+=
vf_premultiply.o
framesync.o
OBJS-$(CONFIG_PREWITT_FILTER)
+=
vf_convolution.o
OBJS-$(CONFIG_PREWITT_FILTER)
+=
vf_convolution.o
OBJS-$(CONFIG_PREWITT_OPENCL_FILTER)
+=
vf_convolution_opencl.o
opencl.o
\
opencl/convolution.o
OBJS-$(CONFIG_PROCAMP_VAAPI_FILTER)
+=
vf_procamp_vaapi.o
vaapi_vpp.o
OBJS-$(CONFIG_PROCAMP_VAAPI_FILTER)
+=
vf_procamp_vaapi.o
vaapi_vpp.o
OBJS-$(CONFIG_PROGRAM_OPENCL_FILTER)
+=
vf_program_opencl.o
opencl.o
framesync.o
OBJS-$(CONFIG_PROGRAM_OPENCL_FILTER)
+=
vf_program_opencl.o
opencl.o
framesync.o
OBJS-$(CONFIG_PSEUDOCOLOR_FILTER)
+=
vf_pseudocolor.o
OBJS-$(CONFIG_PSEUDOCOLOR_FILTER)
+=
vf_pseudocolor.o
...
@@ -310,6 +312,8 @@ OBJS-$(CONFIG_REMOVELOGO_FILTER) += bbox.o lswsutils.o lavfutils.o v
...
@@ -310,6 +312,8 @@ OBJS-$(CONFIG_REMOVELOGO_FILTER) += bbox.o lswsutils.o lavfutils.o v
OBJS-$(CONFIG_REPEATFIELDS_FILTER)
+=
vf_repeatfields.o
OBJS-$(CONFIG_REPEATFIELDS_FILTER)
+=
vf_repeatfields.o
OBJS-$(CONFIG_REVERSE_FILTER)
+=
f_reverse.o
OBJS-$(CONFIG_REVERSE_FILTER)
+=
f_reverse.o
OBJS-$(CONFIG_ROBERTS_FILTER)
+=
vf_convolution.o
OBJS-$(CONFIG_ROBERTS_FILTER)
+=
vf_convolution.o
OBJS-$(CONFIG_ROBERTS_OPENCL_FILTER)
+=
vf_convolution_opencl.o
opencl.o
\
opencl/convolution.o
OBJS-$(CONFIG_ROTATE_FILTER)
+=
vf_rotate.o
OBJS-$(CONFIG_ROTATE_FILTER)
+=
vf_rotate.o
OBJS-$(CONFIG_SAB_FILTER)
+=
vf_sab.o
OBJS-$(CONFIG_SAB_FILTER)
+=
vf_sab.o
OBJS-$(CONFIG_SCALE_FILTER)
+=
vf_scale.o
scale.o
OBJS-$(CONFIG_SCALE_FILTER)
+=
vf_scale.o
scale.o
...
@@ -338,6 +342,8 @@ OBJS-$(CONFIG_SIGNALSTATS_FILTER) += vf_signalstats.o
...
@@ -338,6 +342,8 @@ OBJS-$(CONFIG_SIGNALSTATS_FILTER) += vf_signalstats.o
OBJS-$(CONFIG_SIGNATURE_FILTER)
+=
vf_signature.o
OBJS-$(CONFIG_SIGNATURE_FILTER)
+=
vf_signature.o
OBJS-$(CONFIG_SMARTBLUR_FILTER)
+=
vf_smartblur.o
OBJS-$(CONFIG_SMARTBLUR_FILTER)
+=
vf_smartblur.o
OBJS-$(CONFIG_SOBEL_FILTER)
+=
vf_convolution.o
OBJS-$(CONFIG_SOBEL_FILTER)
+=
vf_convolution.o
OBJS-$(CONFIG_SOBEL_OPENCL_FILTER)
+=
vf_convolution_opencl.o
opencl.o
\
opencl/convolution.o
OBJS-$(CONFIG_SPLIT_FILTER)
+=
split.o
OBJS-$(CONFIG_SPLIT_FILTER)
+=
split.o
OBJS-$(CONFIG_SPP_FILTER)
+=
vf_spp.o
OBJS-$(CONFIG_SPP_FILTER)
+=
vf_spp.o
OBJS-$(CONFIG_SR_FILTER)
+=
vf_sr.o
OBJS-$(CONFIG_SR_FILTER)
+=
vf_sr.o
...
...
libavfilter/allfilters.c
View file @
581bafa8
...
@@ -282,6 +282,7 @@ extern AVFilter ff_vf_pp;
...
@@ -282,6 +282,7 @@ extern AVFilter ff_vf_pp;
extern
AVFilter
ff_vf_pp7
;
extern
AVFilter
ff_vf_pp7
;
extern
AVFilter
ff_vf_premultiply
;
extern
AVFilter
ff_vf_premultiply
;
extern
AVFilter
ff_vf_prewitt
;
extern
AVFilter
ff_vf_prewitt
;
extern
AVFilter
ff_vf_prewitt_opencl
;
extern
AVFilter
ff_vf_procamp_vaapi
;
extern
AVFilter
ff_vf_procamp_vaapi
;
extern
AVFilter
ff_vf_program_opencl
;
extern
AVFilter
ff_vf_program_opencl
;
extern
AVFilter
ff_vf_pseudocolor
;
extern
AVFilter
ff_vf_pseudocolor
;
...
@@ -298,6 +299,7 @@ extern AVFilter ff_vf_removelogo;
...
@@ -298,6 +299,7 @@ extern AVFilter ff_vf_removelogo;
extern
AVFilter
ff_vf_repeatfields
;
extern
AVFilter
ff_vf_repeatfields
;
extern
AVFilter
ff_vf_reverse
;
extern
AVFilter
ff_vf_reverse
;
extern
AVFilter
ff_vf_roberts
;
extern
AVFilter
ff_vf_roberts
;
extern
AVFilter
ff_vf_roberts_opencl
;
extern
AVFilter
ff_vf_rotate
;
extern
AVFilter
ff_vf_rotate
;
extern
AVFilter
ff_vf_sab
;
extern
AVFilter
ff_vf_sab
;
extern
AVFilter
ff_vf_scale
;
extern
AVFilter
ff_vf_scale
;
...
@@ -326,6 +328,7 @@ extern AVFilter ff_vf_signalstats;
...
@@ -326,6 +328,7 @@ extern AVFilter ff_vf_signalstats;
extern
AVFilter
ff_vf_signature
;
extern
AVFilter
ff_vf_signature
;
extern
AVFilter
ff_vf_smartblur
;
extern
AVFilter
ff_vf_smartblur
;
extern
AVFilter
ff_vf_sobel
;
extern
AVFilter
ff_vf_sobel
;
extern
AVFilter
ff_vf_sobel_opencl
;
extern
AVFilter
ff_vf_split
;
extern
AVFilter
ff_vf_split
;
extern
AVFilter
ff_vf_spp
;
extern
AVFilter
ff_vf_spp
;
extern
AVFilter
ff_vf_sr
;
extern
AVFilter
ff_vf_sr
;
...
...
libavfilter/opencl/convolution.cl
View file @
581bafa8
...
@@ -43,3 +43,85 @@ __kernel void convolution_global(__write_only image2d_t dst,
...
@@ -43,3 +43,85 @@ __kernel void convolution_global(__write_only image2d_t dst,
float4
dstPix
=
convPix
*
div
+
bias
;
float4
dstPix
=
convPix
*
div
+
bias
;
write_imagef
(
dst,
loc,
dstPix
)
;
write_imagef
(
dst,
loc,
dstPix
)
;
}
}
__kernel
void
sobel_global
(
__write_only
image2d_t
dst,
__read_only
image2d_t
src,
float
div,
float
bias
)
{
const
sampler_t
sampler
=
(
CLK_NORMALIZED_COORDS_FALSE
|
CLK_ADDRESS_CLAMP_TO_EDGE |
CLK_FILTER_NEAREST
)
;
int2
loc
=
(
int2
)(
get_global_id
(
0
)
,
get_global_id
(
1
))
;
float4
sum1
=
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
-1
,
-1
))
*
-1
+
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
0
,
-1
))
*
-2
+
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
1
,
-1
))
*
-1
+
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
-1
,
1
))
*
1
+
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
0
,
1
))
*
2
+
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
1
,
1
))
*
1
;
float4
sum2
=
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
-1
,
-1
))
*
-1
+
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
-1
,
0
))
*
-2
+
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
-1
,
1
))
*
-1
+
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
1
,
-1
))
*
1
+
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
1
,
0
))
*
2
+
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
1
,
1
))
*
1
;
float4
dstPix
=
hypot
(
sum1,
sum2
)
*
div
+
bias
;
write_imagef
(
dst,
loc,
dstPix
)
;
}
__kernel
void
prewitt_global
(
__write_only
image2d_t
dst,
__read_only
image2d_t
src,
float
div,
float
bias
)
{
const
sampler_t
sampler
=
(
CLK_NORMALIZED_COORDS_FALSE
|
CLK_ADDRESS_CLAMP_TO_EDGE |
CLK_FILTER_NEAREST
)
;
int2
loc
=
(
int2
)(
get_global_id
(
0
)
,
get_global_id
(
1
))
;
float4
sum1
=
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
-1
,
-1
))
*
1
+
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
0
,
-1
))
*
1
+
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
1
,
-1
))
*
1
+
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
-1
,
1
))
*
-1
+
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
0
,
1
))
*
-1
+
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
1
,
1
))
*
-1
;
float4
sum2
=
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
-1
,
-1
))
*
1
+
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
-1
,
0
))
*
1
+
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
-1
,
1
))
*
1
+
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
1
,
-1
))
*
-1
+
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
1
,
0
))
*
-1
+
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
1
,
1
))
*
-1
;
float4
dstPix
=
hypot
(
sum1,
sum2
)
*
div
+
bias
;
write_imagef
(
dst,
loc,
dstPix
)
;
}
__kernel
void
roberts_global
(
__write_only
image2d_t
dst,
__read_only
image2d_t
src,
float
div,
float
bias
)
{
const
sampler_t
sampler
=
(
CLK_NORMALIZED_COORDS_FALSE
|
CLK_ADDRESS_CLAMP_TO_EDGE |
CLK_FILTER_NEAREST
)
;
int2
loc
=
(
int2
)(
get_global_id
(
0
)
,
get_global_id
(
1
))
;
float4
sum1
=
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
-1
,
-1
))
*
1
+
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
0
,
-1
))
*
-1
;
float4
sum2
=
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
-1
,
0
))
*
-1
+
read_imagef
(
src,
sampler,
loc
+
(
int2
)(
0
,
0
))
*
1
;
float4
dstPix
=
hypot
(
sum1,
sum2
)
*
div
+
bias
;
write_imagef
(
dst,
loc,
dstPix
)
;
}
libavfilter/vf_convolution_opencl.c
View file @
581bafa8
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment