This file is indexed.

/usr/include/movit/lift_gamma_gain_effect.h is in libmovit-dev 1.1.2-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef _MOVIT_LIFT_GAMMA_GAIN_EFFECT_H
#define _MOVIT_LIFT_GAMMA_GAIN_EFFECT_H 1

// A simple lift/gamma/gain effect, used for color grading.
//
// Very roughly speaking, lift=shadows, gamma=midtones and gain=highlights,
// although all parameters affect the entire curve. Mathematically speaking,
// it is a bit unusual to look at gamma as a color, but it works pretty well
// in practice.
//
// The classic formula is: output = (gain * (x + lift * (1-x)))^(1/gamma).
//
// The lift is actually a case where we actually would _not_ want linear light;
// since black by definition becomes equal to the lift color, we want lift to
// be pretty close to black, but in linear light that means lift affects the
// rest of the curve relatively little. Thus, we actually convert to gamma 2.2
// before lift, and then back again afterwards. (Gain and gamma are,
// up to constants, commutative with the de-gamma operation.)
//
// Also, gamma is a case where we would not want premultiplied alpha.
// Thus, we have to divide away alpha first, and then re-multiply it back later.

#include <epoxy/gl.h>
#include <string>

#include "effect.h"

namespace movit {

class LiftGammaGainEffect : public Effect {
public:
	LiftGammaGainEffect();
	virtual std::string effect_type_id() const { return "LiftGammaGainEffect"; }
	virtual AlphaHandling alpha_handling() const { return INPUT_PREMULTIPLIED_ALPHA_KEEP_BLANK; }
	std::string output_fragment_shader();

	void set_gl_state(GLuint glsl_program_num, const std::string &prefix, unsigned *sampler_num);

private:
	RGBTriplet lift, gamma, gain;
};

}  // namespace movit

#endif // !defined(_MOVIT_LIFT_GAMMA_GAIN_EFFECT_H)