]> git.sesse.net Git - movit/blob - ycbcr_input.h
Support changing resolution in effects, and add a simple ResizeEffect that does that...
[movit] / ycbcr_input.h
1 #ifndef _YCBCR_INPUT_H
2 #define _YCBCR_INPUT_H 1
3
4 // YCbCrInput is for handling planar 8-bit Y'CbCr (also sometimes, usually rather
5 // imprecisely, called “YUV”), which is typically what you get from a video decoder.
6 // It upsamples planes as needed, using the default linear upsampling OpenGL gives you.
7
8 #include "input.h"
9
10 struct YCbCrFormat {
11         // Which formula for Y' to use.
12         YCbCrLumaCoefficients luma_coefficients;
13
14         // If true, assume Y'CbCr coefficients are full-range, ie. go from 0 to 255
15         // instead of the limited 220/225 steps in classic MPEG. For instance,
16         // JPEG uses the Rec. 601 luma coefficients, but full range.
17         bool full_range;
18
19         // Sampling factors for chroma components. For no subsampling (4:4:4),
20         // set both to 1.
21         unsigned chroma_subsampling_x, chroma_subsampling_y;
22
23         // Positioning of the chroma samples. MPEG-1 and JPEG is (0.5, 0.5);
24         // MPEG-2 and newer typically are (0.0, 0.5).
25         float chroma_x_position, chroma_y_position;
26 };
27
28 class YCbCrInput : public Input {
29 public:
30         YCbCrInput(const ImageFormat &image_format,
31                    const YCbCrFormat &ycbcr_format,
32                    unsigned width, unsigned height);
33
34         // Create the texture itself. We cannot do this in the constructor,
35         // because we don't necessarily know all the settings (sRGB texture,
36         // mipmap generation) at that point.
37         void finalize();
38
39         virtual bool can_output_linear_gamma() const { return false; }
40
41         std::string output_fragment_shader();
42
43         // Uploads the texture if it has changed since last time.
44         void set_gl_state(GLuint glsl_program_num, const std::string& prefix, unsigned *sampler_num);
45
46         ColorSpace get_color_space() const { return image_format.color_space; }
47         GammaCurve get_gamma_curve() const { return image_format.gamma_curve; }
48
49         // Tells the input where to fetch the actual pixel data. Note that if you change
50         // this data, you must either call set_pixel_data() again (using the same pointer
51         // is fine), or invalidate_pixel_data(). Otherwise, the texture won't be re-uploaded
52         // on subsequent frames.
53         void set_pixel_data(unsigned channel, const unsigned char *pixel_data)
54         {
55                 assert(channel >= 0 && channel < 3);
56                 this->pixel_data[channel] = pixel_data;
57                 invalidate_pixel_data();
58         }
59
60         void invalidate_pixel_data()
61         {
62                 needs_update = true;
63         }
64
65         const unsigned char *get_pixel_data(unsigned channel) const
66         {
67                 assert(channel >= 0 && channel < 3);
68                 return pixel_data[channel];
69         }
70
71         void set_pitch(unsigned channel, unsigned pitch) {
72                 assert(!finalized);
73                 assert(channel >= 0 && channel < 3);
74                 this->pitch[channel] = pitch;
75         }
76
77         unsigned get_pitch(unsigned channel) {
78                 assert(channel >= 0 && channel < 3);
79                 return pitch[channel];
80         }
81
82 private:
83         ImageFormat image_format;
84         YCbCrFormat ycbcr_format;
85         GLuint pbos[3], texture_num[3];
86         bool needs_update, finalized;
87
88         int needs_mipmaps;
89
90         unsigned width, height, widths[3], heights[3];
91         const unsigned char *pixel_data[3];
92         unsigned pitch[3];
93 };
94
95 #endif // !defined(_YCBCR_INPUT_H)