]> git.sesse.net Git - mlt/blob - src/modules/opengl/mlt_flip_effect.h
Let Movit effects supply their own fingerprint.
[mlt] / src / modules / opengl / mlt_flip_effect.h
1 /*
2  * mlt_flip_effect.h
3  * Copyright (C) 2013 Dan Dennedy <dan@dennedy.org>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software Foundation,
17  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef MLT_FLIP_EFFECT_H
21 #define MLT_FLIP_EFFECT_H
22
23 namespace Mlt
24 {
25
26 class VerticalFlip : public Effect {
27 public:
28         VerticalFlip() {}
29         virtual std::string effect_type_id() const { return "MltVerticalFlip"; }
30         std::string output_fragment_shader() {
31                 return "vec4 FUNCNAME(vec2 tc) { tc.y = 1.0 - tc.y; return INPUT(tc); }\n";
32         }
33         virtual bool needs_linear_light() const { return false; }
34         virtual bool needs_srgb_primaries() const { return false; }
35         AlphaHandling alpha_handling() const { return DONT_CARE_ALPHA_TYPE; }
36 };
37
38 } // namespace Mlt
39
40 #endif // MLT_FLIP_EFFECT_H