00001 /* 00002 //========================================================================== 00003 // 00004 // Copyright (c) On2 Technologies Inc. All Rights Reserved. 00005 // 00006 //-------------------------------------------------------------------------- 00007 // 00008 // File: $Workfile$ 00009 // $Revision$ 00010 // 00011 // Last Update: $DateUTC$ 00012 // 00013 //-------------------------------------------------------------------------- 00014 */ 00015 #ifndef FE_BLUR_FILTER_H 00016 #define FE_BLUR_FILTER_H 00017 00047 typedef enum masksiz { 00048 MASK_3x3, 00049 MASK_5x5 00050 } masksiz_t; 00051 00052 typedef enum blurfilter { 00065 BLUR_LOWPASS, 00078 BLUR_GAUSS 00079 } blurfilter_t; 00080 00082 #define FE2_FILTER_BLUR "blur" 00088 #define FE2_BLUR_FILTER "filter" 00095 #define FE2_BLUR_MASKSIZE "masksiz" 00098 #endif /*FE_BLUR_FILTER_H*/