2014-01-10 17:24:40 -06:00
|
|
|
#ifndef OPENSHOT_EFFECTS_H
|
|
|
|
|
#define OPENSHOT_EFFECTS_H
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @file
|
|
|
|
|
* @brief This header includes all commonly used effects for libopenshot, for ease-of-use.
|
|
|
|
|
* @author Jonathan Thomas <jonathan@openshot.org>
|
|
|
|
|
*
|
|
|
|
|
* @section LICENSE
|
|
|
|
|
*
|
2014-03-29 18:49:22 -05:00
|
|
|
* Copyright (c) 2008-2014 OpenShot Studios, LLC
|
|
|
|
|
* <http://www.openshotstudios.com/>. This file is part of
|
|
|
|
|
* OpenShot Library (libopenshot), an open-source project dedicated to
|
|
|
|
|
* delivering high quality video editing and animation solutions to the
|
|
|
|
|
* world. For more information visit <http://www.openshot.org/>.
|
2014-01-10 17:24:40 -06:00
|
|
|
*
|
2014-03-29 18:49:22 -05:00
|
|
|
* OpenShot Library (libopenshot) is free software: you can redistribute it
|
2014-07-11 16:52:14 -05:00
|
|
|
* and/or modify it under the terms of the GNU Lesser General Public License
|
2014-03-29 18:49:22 -05:00
|
|
|
* as published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
* License, or (at your option) any later version.
|
2014-01-10 17:24:40 -06:00
|
|
|
*
|
2014-03-29 18:49:22 -05:00
|
|
|
* OpenShot Library (libopenshot) is distributed in the hope that it will be
|
|
|
|
|
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2014-07-11 16:52:14 -05:00
|
|
|
* GNU Lesser General Public License for more details.
|
2014-01-10 17:24:40 -06:00
|
|
|
*
|
2014-07-11 16:52:14 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
2014-03-29 18:49:22 -05:00
|
|
|
* along with OpenShot Library. If not, see <http://www.gnu.org/licenses/>.
|
2014-01-10 17:24:40 -06:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* Effects */
|
2018-02-09 02:37:05 -06:00
|
|
|
#include "effects/Bars.h"
|
2015-11-09 00:12:21 -06:00
|
|
|
#include "effects/Blur.h"
|
2015-08-16 22:58:07 -05:00
|
|
|
#include "effects/Brightness.h"
|
2014-01-10 17:24:40 -06:00
|
|
|
#include "effects/ChromaKey.h"
|
2018-03-03 18:02:14 -06:00
|
|
|
#include "effects/ColorShift.h"
|
2018-03-05 02:12:37 -06:00
|
|
|
#include "effects/Crop.h"
|
2014-01-10 17:24:40 -06:00
|
|
|
#include "effects/Deinterlace.h"
|
2018-02-06 02:26:35 -06:00
|
|
|
#include "effects/Hue.h"
|
2014-01-10 17:24:40 -06:00
|
|
|
#include "effects/Mask.h"
|
|
|
|
|
#include "effects/Negate.h"
|
2018-02-09 16:43:43 -06:00
|
|
|
#include "effects/Pixelate.h"
|
2015-08-16 22:58:07 -05:00
|
|
|
#include "effects/Saturation.h"
|
2018-02-06 00:51:59 -06:00
|
|
|
#include "effects/Shift.h"
|
2018-02-08 03:51:32 -06:00
|
|
|
#include "effects/Wave.h"
|
2014-01-10 17:24:40 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|