Credit Andrew - fix vorbis audio which was scratchy and ensure aging plugin does...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / maskautos.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  * Copyright (C) 2003-2016 Cinelerra CV contributors
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  *
21  */
22
23 #ifndef MASKAUTOS_H
24 #define MASKAUTOS_H
25
26
27 #include "autos.h"
28 #include "edl.inc"
29 #include "maskauto.inc"
30 #include "track.inc"
31
32 class MaskAutos : public Autos
33 {
34 public:
35         MaskAutos(EDL *edl, Track *track);
36         ~MaskAutos();
37
38         Auto* new_auto();
39         void dump(FILE *fp);
40
41         static void avg_points(MaskPoint *output,
42                 MaskPoint *input1,
43                 MaskPoint *input2,
44                 int64_t output_position,
45                 int64_t position1,
46                 int64_t position2);
47 // Keyframe updates using rules.
48 // If a range is selected, the changed parameter is copied to all
49 // the keyframes.
50 // If no range is selected, a keyframe is created based on auto keyframe rules.
51         void update_parameter(MaskAuto *src);
52
53
54         int mask_exists(int64_t position, int direction);
55 // Perform interpolation
56         void get_points(MaskPoints *points, int submask, int64_t position, int direction);
57         double get_feather(int64_t position, int i, int direction);
58         double get_fader(int64_t position, int i, int direction);
59         int total_submasks(int64_t position, int direction);
60 // Translates all mask points
61         void translate_masks(float translate_x, float translate_y);
62         void set_proxy(int orig_scale, int new_scale);
63 };
64
65 #endif