comparison libmpcodecs/vf_eq2.c @ 30421:bbb6ebec87a0

Add missing license headers to all files in the libmpcodecs directory.
author diego
date Sat, 30 Jan 2010 16:57:40 +0000
parents 0f1b5b68af32
children f43b6757e3f8
comparison
equal deleted inserted replaced
30420:e280adbd7744 30421:bbb6ebec87a0
1 /* 1 /*
2 * vf_eq2.c
3 *
4 * Software equalizer (brightness, contrast, gamma, saturation) 2 * Software equalizer (brightness, contrast, gamma, saturation)
5 * 3 *
6 * Hampa Hug <hampa@hampa.ch> (original LUT gamma/contrast/brightness filter) 4 * Hampa Hug <hampa@hampa.ch> (original LUT gamma/contrast/brightness filter)
7 * Daniel Moreno <comac@comac.darktech.org> (saturation, R/G/B gamma support) 5 * Daniel Moreno <comac@comac.darktech.org> (saturation, R/G/B gamma support)
8 * Richard Felker (original MMX contrast/brightness code (vf_eq.c)) 6 * Richard Felker (original MMX contrast/brightness code (vf_eq.c))
9 * Michael Niedermayer <michalni@gmx.at> (LUT16) 7 * Michael Niedermayer <michalni@gmx.at> (LUT16)
8 /*
9 * This file is part of MPlayer.
10 *
11 * MPlayer is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * MPlayer is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
10 */ 24 */
11 25
12 #include <stdio.h> 26 #include <stdio.h>
13 #include <stdlib.h> 27 #include <stdlib.h>
14 #include <string.h> 28 #include <string.h>