]> git.sesse.net Git - casparcg/blob - core/producer/frame/audio_transform.cpp
b6857667283e9c3d8c8b7aa8297738e462ecd75e
[casparcg] / core / producer / frame / audio_transform.cpp
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 #include "../../stdafx.h"\r
21 \r
22 #include "audio_transform.h"\r
23 \r
24 namespace caspar { namespace core {\r
25         \r
26 audio_transform::audio_transform()\r
27         : gain_(1.0)\r
28         , has_audio_(true){}\r
29 \r
30 void audio_transform::set_gain(double value)\r
31 {\r
32         gain_ = std::max(0.0, value);\r
33 }\r
34 \r
35 double audio_transform::get_gain() const\r
36 {\r
37         return gain_;\r
38 }\r
39 \r
40 void audio_transform::set_has_audio(bool value)\r
41 {\r
42         has_audio_ = value;\r
43 }\r
44 \r
45 bool audio_transform::get_has_audio() const\r
46 {\r
47         return has_audio_;\r
48 }\r
49 \r
50 audio_transform& audio_transform::operator*=(const audio_transform &other) \r
51 {\r
52         gain_ *= other.gain_;\r
53         has_audio_ &= other.has_audio_;\r
54         return *this;\r
55 }\r
56 \r
57 const audio_transform audio_transform::operator*(const audio_transform &other) const\r
58 {\r
59         return audio_transform(*this) *= other;\r
60 }\r
61 \r
62 audio_transform tween(double time, const audio_transform& source, const audio_transform& dest, double duration, const tweener_t& tweener)\r
63 {\r
64         auto do_tween = [](double time, double source, double dest, double duration, const tweener_t& tweener)\r
65         {\r
66                 return tweener(time, source, dest-source, duration);\r
67         };\r
68 \r
69         audio_transform result;\r
70         result.set_gain(do_tween(time, source.get_gain(), dest.get_gain(), duration, tweener));\r
71         result.set_has_audio(source.get_has_audio() || dest.get_has_audio());\r
72         return result;\r
73 }\r
74 \r
75 }}