Anonymous Contribution of new Mirror plugin
[goodguy/cinelerra.git] / cinelerra-5.1 / plugins / mirror / mirror.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
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 Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 /*
23  * 2023. Derivative by Flip plugin.
24 */
25
26 #ifndef MIRROR_H
27 #define MIRROR_H
28
29
30 class MirrorMain;
31
32 #include "filexml.h"
33 #include "mirrorwindow.h"
34 #include "guicast.h"
35 #include "pluginvclient.h"
36
37 class MirrorConfig
38 {
39 public:
40         MirrorConfig();
41         void reset(int clear);
42         void copy_from(MirrorConfig &that);
43         int equivalent(MirrorConfig &that);
44         void interpolate(MirrorConfig &prev,
45                 MirrorConfig &next,
46                 int64_t prev_frame,
47                 int64_t next_frame,
48                 int64_t current_frame);
49         int mirror_horizontal;
50         int mirror_swaphorizontal;
51         int mirror_vertical;
52         int mirror_swapvertical;
53         int reflection_center_enable;
54         float reflection_center_x, reflection_center_y;
55 };
56
57 class MirrorMain : public PluginVClient
58 {
59 public:
60         MirrorMain(PluginServer *server);
61         ~MirrorMain();
62
63         PLUGIN_CLASS_MEMBERS(MirrorConfig);
64
65 // required for all realtime plugins
66         int process_buffer(VFrame *frame,
67                 int64_t start_position,
68                 double frame_rate);
69         int is_realtime();
70         void update_gui();
71         void save_data(KeyFrame *keyframe);
72         void read_data(KeyFrame *keyframe);
73         int handle_opengl();
74 };
75
76
77 #endif