]> git.sesse.net Git - casparcg/blob - accelerator/ogl/image/image_mixer.h
[image_producer] refuse too large images nicely instead of letting OpenGL tell us...
[casparcg] / accelerator / ogl / image / image_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/future_fwd.h>
27
28 #include <core/mixer/image/blend_modes.h>
29 #include <core/mixer/image/image_mixer.h>
30 #include <core/fwd.h>
31
32 #include <core/frame/frame_visitor.h>
33 #include <core/video_format.h>
34
35 namespace caspar { namespace accelerator { namespace ogl {
36         
37 class image_mixer final : public core::image_mixer
38 {
39         image_mixer(const image_mixer&);
40         image_mixer& operator=(const image_mixer&);
41 public:
42
43         // Static Members
44         
45         // Constructors
46
47         image_mixer(const spl::shared_ptr<class device>& ogl, bool blend_modes_wanted, bool straight_alpha_wanted, int channel_id);
48         ~image_mixer();
49
50         // Methods
51                         
52         std::future<array<const std::uint8_t>> operator()(const core::video_format_desc& format_desc, bool straighten_alpha) override;
53         core::mutable_frame create_frame(const void* tag, const core::pixel_format_desc& desc, const core::audio_channel_layout& channel_layout) override;
54
55         // core::image_mixer
56
57         void push(const core::frame_transform& frame) override;
58         void visit(const core::const_frame& frame) override;
59         void pop() override;
60                         
61         // Properties
62
63         int get_max_frame_size() override;
64
65 private:
66         struct impl;
67         spl::unique_ptr<impl> impl_;
68 };
69
70 }}}