FJMovieEditor Pré-Alpha
A GTK video editor for GNOME. Designed for Artists to do, special effects, compositing and animation.

trunk/libfjme/VideoFilters.h

Go to the documentation of this file.
00001 /*
00002 A GTK video editor Designed for Artists to do, special effects, compositing and animation.
00003 Copyright (C) 2011  Fabio J. Gonzalez
00004 
00005 This program is free software: you can redistribute it and/or modify
00006 it under the terms of the GNU General Public License as published by
00007 the Free Software Foundation, either version 3 of the License, or
00008 (at your option) any later version.
00009 
00010 This program is distributed in the hope that it will be useful,
00011 but WITHOUT ANY WARRANTY; without even the implied warranty of
00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013 GNU General Public License for more details.
00014 
00015 You should have received a copy of the GNU General Public License
00016 along with this program.  If not, see <http://www.gnu.org/licenses/>.
00017  */
00018 
00019 
00025 /*
00026  * These functions can serve as an
00027  *  example of how to create plugins 
00028  * with effect.
00029  */
00030 
00031 /* Brightness and contrast */
00032 void Brightness_Config(iPlugin* p);
00033 void Brightness_Init(iPlugin* p);
00034 void Brightness_Frame(iPlugin* p);
00035 
00036 /* Cartoon */
00037 void Cartoon_Config(iPlugin* p);
00038 void Cartoon_Init(iPlugin* p);
00039 void Cartoon_Frame(iPlugin* p);
00040 
00041 /*Color shift*/
00042 void ColorShift_Config(iPlugin* p);
00043 void ColorShift_Init(iPlugin* p);
00044 void ColorShift_Frame(iPlugin* p);
00045 
00050 void Curves_Config(iPlugin* p);
00051 
00055 void Curves_Init(iPlugin* p);
00056 
00061 void Curves_Frame(iPlugin* p);
All Data Structures Files Functions Variables Typedefs Defines