comparison libmpcodecs/vd_xanim.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 cc27da5d7286
comparison
equal deleted inserted replaced
30420:e280adbd7744 30421:bbb6ebec87a0
1 /* 1 /*
2 XAnim Video Codec DLL support 2 * XAnim Video Codec DLL support
3 3 *
4 It partly emulates the Xanim codebase. 4 * It partly emulates the Xanim codebase.
5 You need the -rdynamic flag to use this with gcc. 5 * You need the -rdynamic flag to use this with gcc.
6 6 *
7 (C) 2001-2002 Alex Beregszaszi 7 * Copyright (C) 2001-2002 Alex Beregszaszi
8 and Arpad Gereoffy <arpi@thot.banki.hu> 8 * Arpad Gereoffy <arpi@thot.banki.hu>
9 */ 9 *
10 * This file is part of MPlayer.
11 *
12 * MPlayer is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * MPlayer is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along
23 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 */
10 26
11 #include <stdio.h> 27 #include <stdio.h>
12 #include <stdlib.h> 28 #include <stdlib.h>
13 #include <string.h> /* strerror */ 29 #include <string.h> /* strerror */
14 30