]> git.sesse.net Git - mlt/blob - src/modules/opengl/mlt_movit_input.cpp
Take MltInput out of the EffectChain.
[mlt] / src / modules / opengl / mlt_movit_input.cpp
1 /*
2  * mlt_movit_input.cpp
3  * Copyright (C) 2013 Dan Dennedy <dan@dennedy.org>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software Foundation,
17  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #include "mlt_movit_input.h"
21
22 MltInput::MltInput()
23         : input(0)
24         , isRGB(true)
25 {
26 }
27
28 MltInput::~MltInput()
29 {
30 }
31
32 void MltInput::useFlatInput(MovitPixelFormat pix_fmt, unsigned width, unsigned height)
33 {
34         if (!input) {
35                 m_width = width;
36                 m_height = height;
37                 ImageFormat image_format;
38                 image_format.color_space = COLORSPACE_sRGB;
39                 image_format.gamma_curve = GAMMA_sRGB;
40                 input = new FlatInput(image_format, pix_fmt, GL_UNSIGNED_BYTE, width, height);
41         }
42 }
43
44 void MltInput::useYCbCrInput(const ImageFormat& image_format, const YCbCrFormat& ycbcr_format, unsigned width, unsigned height)
45 {
46         if (!input) {
47                 m_width = width;
48                 m_height = height;
49                 input = new YCbCrInput(image_format, ycbcr_format, width, height);
50                 isRGB = false;
51                 m_ycbcr_format = ycbcr_format;
52         }
53 }
54
55 void MltInput::set_pixel_data(const unsigned char* data)
56 {
57         assert(input);
58         if (isRGB) {
59                 FlatInput* flat = (FlatInput*) input;
60                 flat->set_pixel_data(data);
61         } else {
62                 YCbCrInput* ycbcr = (YCbCrInput*) input;
63                 ycbcr->set_pixel_data(0, data);
64                 ycbcr->set_pixel_data(1, &data[m_width * m_height]);
65                 ycbcr->set_pixel_data(2, &data[m_width * m_height + (m_width / m_ycbcr_format.chroma_subsampling_x * m_height / m_ycbcr_format.chroma_subsampling_y)]);
66         }
67 }
68
69 void MltInput::invalidate_pixel_data()
70 {
71         assert(input);
72         if (isRGB) {
73                 FlatInput* flat = (FlatInput*) input;
74                 flat->invalidate_pixel_data();
75         } else {
76                 YCbCrInput* ycbcr = (YCbCrInput*) input;
77                 ycbcr->invalidate_pixel_data();
78         }
79 }