]> git.sesse.net Git - casparcg/blob - core/producer/frame/frame_transform.h
2.0. Fixed mix transition.
[casparcg] / core / producer / frame / frame_transform.h
1 /*\r
2 * copyright (c) 2010 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 *  This file is part of CasparCG.\r
5 *\r
6 *    CasparCG is free software: you can redistribute it and/or modify\r
7 *    it under the terms of the GNU General Public License as published by\r
8 *    the Free Software Foundation, either version 3 of the License, or\r
9 *    (at your option) any later version.\r
10 *\r
11 *    CasparCG is distributed in the hope that it will be useful,\r
12 *    but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14 *    GNU General Public License for more details.\r
15 \r
16 *    You should have received a copy of the GNU General Public License\r
17 *    along with CasparCG.  If not, see <http://www.gnu.org/licenses/>.\r
18 *\r
19 */\r
20 #pragma once\r
21 \r
22 #include <common/utility/tweener.h>\r
23 #include <core/video_format.h>\r
24 \r
25 #include <boost/array.hpp>\r
26 #include <type_traits>\r
27 \r
28 namespace caspar { namespace core {\r
29 \r
30 struct pixel_format_desc;\r
31                 \r
32 struct levels\r
33 {\r
34         levels() \r
35                 : min_input(0.0)\r
36                 , max_input(1.0)\r
37                 , gamma(1.0)\r
38                 , min_output(0.0)\r
39                 , max_output(1.0)\r
40         {               \r
41         }\r
42         double min_input;\r
43         double max_input;\r
44         double gamma;\r
45         double min_output;\r
46         double max_output;\r
47 };\r
48 \r
49 struct frame_transform \r
50 {\r
51 public:\r
52 \r
53         frame_transform();\r
54 \r
55         double                                  volume;\r
56         double                                  opacity;\r
57         double                                  contrast;\r
58         double                                  brightness;\r
59         double                                  saturation;\r
60         boost::array<double, 2> fill_translation; \r
61         boost::array<double, 2> fill_scale; \r
62         boost::array<double, 2> clip_translation;  \r
63         boost::array<double, 2> clip_scale;  \r
64         levels                                  levels;\r
65 \r
66         field_mode::type                field_mode;\r
67         bool                                    is_key;\r
68         bool                                    is_mix;\r
69         \r
70         frame_transform& frame_transform::operator*=(const frame_transform &other);\r
71         frame_transform frame_transform::operator*(const frame_transform &other) const;\r
72 };\r
73 \r
74 frame_transform tween(double time, const frame_transform& source, const frame_transform& dest, double duration, const tweener_t& tweener);\r
75 \r
76 bool operator<(const frame_transform& lhs, const frame_transform& rhs);\r
77 bool operator==(const frame_transform& lhs, const frame_transform& rhs);\r
78 bool operator!=(const frame_transform& lhs, const frame_transform& rhs);\r
79 \r
80 }}