aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDjordje Senicic2016-03-23 06:15:25 -0500
committerDjordje Senicic2016-03-23 06:15:25 -0500
commit42db17095af031d8b5942b556b4546ba0c149d02 (patch)
treee3d3d5e6615f44720f9b913f21ca478fd2b94a8a /src/gstdsp66videokernel.c
parent5a10937564728c0c5446de867b7b53fe0733c88c (diff)
downloadgst-plugin-dsp66-42db17095af031d8b5942b556b4546ba0c149d02.tar.gz
gst-plugin-dsp66-42db17095af031d8b5942b556b4546ba0c149d02.tar.xz
gst-plugin-dsp66-42db17095af031d8b5942b556b4546ba0c149d02.zip
Add conv5x5 kernel
Diffstat (limited to 'src/gstdsp66videokernel.c')
-rw-r--r--src/gstdsp66videokernel.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gstdsp66videokernel.c b/src/gstdsp66videokernel.c
index 525c768..48c7764 100644
--- a/src/gstdsp66videokernel.c
+++ b/src/gstdsp66videokernel.c
@@ -61,11 +61,13 @@ enum
61static const GEnumValue dsp66_video_kernel_filtersizes[] = { 61static const GEnumValue dsp66_video_kernel_filtersizes[] = {
62 {GST_DSP66_VIDEO_KERNEL_FILTERSIZE_5, "Kernel of 5 neighbour pixels", "5"}, 62 {GST_DSP66_VIDEO_KERNEL_FILTERSIZE_5, "Kernel of 5 neighbour pixels", "5"},
63 {GST_DSP66_VIDEO_KERNEL_FILTERSIZE_9, "Kernel of 9 neighbour pixels", "9"}, 63 {GST_DSP66_VIDEO_KERNEL_FILTERSIZE_9, "Kernel of 9 neighbour pixels", "9"},
64 {GST_DSP66_VIDEO_KERNEL_FILTERSIZE_25, "Kernel of 25 neighbour pixels", "25"},
64 {0, NULL, NULL}, 65 {0, NULL, NULL},
65}; 66};
66static const GEnumValue dsp66_video_kerneltype[] = { 67static const GEnumValue dsp66_video_kerneltype[] = {
67 {GST_DSP66_VIDEO_KERNELTYPE_MEDIAN, "Kernel median", "0"}, 68 {GST_DSP66_VIDEO_KERNELTYPE_MEDIAN, "Kernel median", "0"},
68 {GST_DSP66_VIDEO_KERNELTYPE_SOBEL, "Kernel sobel", "1"}, 69 {GST_DSP66_VIDEO_KERNELTYPE_SOBEL, "Kernel sobel", "1"},
70 {GST_DSP66_VIDEO_KERNELTYPE_CONV, "Kernel conv", "2"},
69 {0, NULL, NULL}, 71 {0, NULL, NULL},
70}; 72};
71 73