]> git.sesse.net Git - casparcg/blob - core/producer/frame/frame_transform.h
2.0.2: Updated file info headers.
[casparcg] / core / producer / frame / frame_transform.h
1 /*\r
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 * This file is part of CasparCG (www.casparcg.com).\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 * Author: Robert Nagy, ronag89@gmail.com\r
20 */\r
21 \r
22 #pragma once\r
23 \r
24 #include <common/utility/tweener.h>\r
25 #include <core/video_format.h>\r
26 \r
27 #include <boost/array.hpp>\r
28 #include <type_traits>\r
29 \r
30 namespace caspar { namespace core {\r
31 \r
32 struct pixel_format_desc;\r
33                 \r
34 struct levels\r
35 {\r
36         levels() \r
37                 : min_input(0.0)\r
38                 , max_input(1.0)\r
39                 , gamma(1.0)\r
40                 , min_output(0.0)\r
41                 , max_output(1.0)\r
42         {               \r
43         }\r
44         double min_input;\r
45         double max_input;\r
46         double gamma;\r
47         double min_output;\r
48         double max_output;\r
49 };\r
50 \r
51 struct frame_transform \r
52 {\r
53 public:\r
54 \r
55         frame_transform();\r
56 \r
57         double                                  volume;\r
58         double                                  opacity;\r
59         double                                  contrast;\r
60         double                                  brightness;\r
61         double                                  saturation;\r
62         boost::array<double, 2> fill_translation; \r
63         boost::array<double, 2> fill_scale; \r
64         boost::array<double, 2> clip_translation;  \r
65         boost::array<double, 2> clip_scale;  \r
66         levels                                  levels;\r
67 \r
68         field_mode::type                field_mode;\r
69         bool                                    is_key;\r
70         bool                                    is_mix;\r
71         \r
72         frame_transform& frame_transform::operator*=(const frame_transform &other);\r
73         frame_transform frame_transform::operator*(const frame_transform &other) const;\r
74 };\r
75 \r
76 frame_transform tween(double time, const frame_transform& source, const frame_transform& dest, double duration, const tweener_t& tweener);\r
77 \r
78 bool operator<(const frame_transform& lhs, const frame_transform& rhs);\r
79 bool operator==(const frame_transform& lhs, const frame_transform& rhs);\r
80 bool operator!=(const frame_transform& lhs, const frame_transform& rhs);\r
81 \r
82 }}