]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_eq.h
avformat/nsvdec: remove case which is no longer possible
[ffmpeg] / libavfilter / vf_eq.h
1 /*
2  * Original MPlayer filters by Richard Felker, Hampa Hug, Daniel Moreno,
3  * and Michael Niedermeyer.
4  *
5  * Copyright (c) 2014 James Darnley <james.darnley@gmail.com>
6  * Copyright (c) 2015 Arwa Arif <arwaarif1994@gmail.com>
7  *
8  * This file is part of FFmpeg.
9  *
10  * FFmpeg is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * FFmpeg is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License along
21  * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
22  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23  */
24
25 #ifndef AVFILTER_EQ_H
26 #define AVFILTER_EQ_H
27
28 #include "avfilter.h"
29
30 typedef struct EQParameters {
31     void (*adjust)(struct EQParameters *eq, uint8_t *dst, int dst_stride,
32                    const uint8_t *src, int src_stride, int w, int h);
33
34     uint8_t lut[256];
35
36     double brightness, contrast, gamma, gamma_weight;
37     int lut_clean;
38 } EQParameters;
39
40 typedef struct {
41     const AVClass *class;
42
43     EQParameters param[3];
44
45     double contrast;
46     double brightness;
47     double saturation;
48
49     double gamma;
50     double gamma_weight;
51     double gamma_r, gamma_g, gamma_b;
52
53     void (*process)(struct EQParameters *par, uint8_t *dst, int dst_stride,
54                     const uint8_t *src, int src_stride, int w, int h);
55
56 } EQContext;
57
58 void ff_eq_init_x86(EQContext *eq);
59
60 #endif /* AVFILTER_EQ_H */