1 /***************************************************************************
2  *   Copyright (C) 2000-2004 by                                            *
3  *   Jean-Christophe Hoelt <jeko@ios-software.com>                         *
4  *   Guillaume Borios <gyom@ios-software.com>                              *
5  *                                                                          *
6  *   This program is free software; you can redistribute it and/or modify  *
7  *   it under the terms of the GNU General Public License as published by  *
8  *   the Free Software Foundation; either version 2 of the License, or     *
9  *   (at your option) any later version.                                   *
10  *                                                                         *
11  *   This program is distributed in the hope that it will be useful,       *
12  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
13  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
14  *   GNU General Public License for more details.                          *
15  *                                                                         *
16  *   You should have received a copy of the GNU General Public License     *
17  *   along with this program; if not, write to the                         *
18  *   Free Software Foundation, Inc.,                                       *
19  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
20  ***************************************************************************/
21 
22 #ifndef _GOOM_FX_H
23 #define _GOOM_FX_H
24 
25 #include "goom_visual_fx.h"
26 #include "goom_plugin_info.h"
27 
28 VisualFX convolve_create (void);
29 VisualFX flying_star_create (void);
30 
31 void zoom_filter_c(int sizeX, int sizeY, Pixel *src, Pixel *dest, int *brutS, int *brutD, int buffratio, int precalCoef[16][16]);
32 
33 #endif
34