]> git.sesse.net Git - casparcg/blob - core/mixer/audio/audio_mixer.h
[psd] Fixed wrong animation pace when interlaced video formats are used.
[casparcg] / core / mixer / audio / audio_mixer.h
1 /*
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>
3 *
4 * This file is part of CasparCG (www.casparcg.com).
5 *
6 * CasparCG 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 3 of the License, or
9 * (at your option) any later version.
10 *
11 * CasparCG 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 CasparCG. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * Author: Robert Nagy, ronag89@gmail.com
20 */
21
22 #pragma once
23
24 #include <common/forward.h>
25 #include <common/memory.h>
26 #include <common/cache_aligned_vector.h>
27 #include <common/array.h>
28
29 #include <core/frame/frame_visitor.h>
30 #include <core/monitor/monitor.h>
31
32 #include <vector>
33 #include <cstdint>
34
35 FORWARD2(caspar, diagnostics, class graph);
36
37 namespace caspar { namespace core {
38                 
39 typedef caspar::array<const int32_t> audio_buffer;
40
41 class audio_mixer final : public frame_visitor
42 {
43         audio_mixer(const audio_mixer&);
44         audio_mixer& operator=(const audio_mixer&);
45 public:
46
47         // Static Members
48
49         // Constructors
50
51         audio_mixer(spl::shared_ptr<::caspar::diagnostics::graph> graph);
52
53         // Methods
54         
55         audio_buffer operator()(const struct video_format_desc& format_desc, const struct audio_channel_layout& channel_layout);
56         void set_master_volume(float volume); 
57         float get_master_volume();
58         monitor::subject& monitor_output();
59
60         // frame_visitor
61
62         virtual void push(const struct frame_transform& transform);
63         virtual void visit(const class const_frame& frame);
64         virtual void pop();
65         
66         // Properties
67
68 private:
69         struct impl;
70         spl::shared_ptr<impl> impl_;
71 };
72
73 }}