aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'src/gstdsp66videokernel.h')
-rw-r--r--src/gstdsp66videokernel.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gstdsp66videokernel.h b/src/gstdsp66videokernel.h
index 3c35ae2..7cb2c72 100644
--- a/src/gstdsp66videokernel.h
+++ b/src/gstdsp66videokernel.h
@@ -44,9 +44,9 @@ typedef struct _GstDsp66VideoKernelClass GstDsp66VideoKernelClass;
44 44
45typedef enum 45typedef enum
46{ 46{
47 GST_DSP66_VIDEO_KERNEL_SIZE_5 = 5, 47 GST_DSP66_VIDEO_KERNEL_FILTERSIZE_5 = 5,
48 GST_DSP66_VIDEO_KERNEL_SIZE_9 = 9 48 GST_DSP66_VIDEO_KERNEL_FILTERSIZE_9 = 9,
49} GstDsp66VideoKernelSize; 49} GstDsp66VideoKernelFilterSize;
50 50
51typedef enum { 51typedef enum {
52 GST_DSP66_VIDEO_KERNELTYPE_MEDIAN = 0, 52 GST_DSP66_VIDEO_KERNELTYPE_MEDIAN = 0,
@@ -55,7 +55,7 @@ typedef enum {
55 55
56struct _GstDsp66VideoKernel { 56struct _GstDsp66VideoKernel {
57 GstVideoFilter parent; 57 GstVideoFilter parent;
58 GstDsp66VideoKernelSize filtersize; 58 GstDsp66VideoKernelFilterSize filtersize;
59 GstDsp66VideoKernelType kerneltype; 59 GstDsp66VideoKernelType kerneltype;
60 gboolean lum_only; 60 gboolean lum_only;
61}; 61};