~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/blender/compositor/operations/COM_ConvertRGBToYCCOperation.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2014-02-19 11:24:23 UTC
  • mfrom: (14.2.23 sid)
  • Revision ID: package-import@ubuntu.com-20140219112423-rkmaz2m7ha06d4tk
Tags: 2.69-3ubuntu1
* Merge with Debian; remaining changes:
  - Configure without OpenImageIO on armhf, as it is not available on
    Ubuntu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright 2011, Blender Foundation.
3
 
 *
4
 
 * This program is free software; you can redistribute it and/or
5
 
 * modify it under the terms of the GNU General Public License
6
 
 * as published by the Free Software Foundation; either version 2
7
 
 * of the License, or (at your option) any later version.
8
 
 *
9
 
 * This program is distributed in the hope that it will be useful,
10
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
 * GNU General Public License for more details.
13
 
 *
14
 
 * You should have received a copy of the GNU General Public License
15
 
 * along with this program; if not, write to the Free Software Foundation,
16
 
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
 
 *
18
 
 * Contributor:
19
 
 *              Dalai Felinto
20
 
 */
21
 
 
22
 
#ifndef _COM_ConvertRGBToYCCOperation_h
23
 
#define _COM_ConvertRGBToYCCOperation_h
24
 
#include "COM_NodeOperation.h"
25
 
 
26
 
 
27
 
/**
28
 
 * this program converts an input color to an output value.
29
 
 * it assumes we are in sRGB color space.
30
 
 */
31
 
class ConvertRGBToYCCOperation : public NodeOperation {
32
 
private:
33
 
        /**
34
 
         * Cached reference to the inputProgram
35
 
         */
36
 
        SocketReader *m_inputOperation;
37
 
 
38
 
        /**
39
 
         * YCbCr mode (Jpeg, ITU601, ITU709)
40
 
         */
41
 
        int m_mode;
42
 
public:
43
 
        /**
44
 
         * Default constructor
45
 
         */
46
 
        ConvertRGBToYCCOperation();
47
 
 
48
 
        /**
49
 
         * the inner loop of this program
50
 
         */
51
 
        void executePixel(float output[4], float x, float y, PixelSampler sampler);
52
 
 
53
 
        /**
54
 
         * Initialize the execution
55
 
         */
56
 
        void initExecution();
57
 
 
58
 
        /**
59
 
         * Deinitialize the execution
60
 
         */
61
 
        void deinitExecution();
62
 
 
63
 
        /**
64
 
         * Set the YCC mode
65
 
         */
66
 
        void setMode(int mode);
67
 
};
68
 
#endif