comparison ac3dec.c @ 5328:5f83f09bd748 libavcodec

revise license header for simplicity and consistency
author jbr
date Sat, 14 Jul 2007 18:53:56 +0000
parents 923aacd40ee8
children 06e7dda51f65
comparison
equal deleted inserted replaced
5327:de0e893ef264 5328:5f83f09bd748
1 /* AC3 Audio Decoder. 1 /*
2 * AC-3 Audio Decoder
2 * This code is developed as part of Google Summer of Code 2006 Program. 3 * This code is developed as part of Google Summer of Code 2006 Program.
3 * 4 *
4 * Acknowledgements: 5 * Copyright (c) 2006 Kartikey Mahendra BHATT (bhattkm at gmail dot com).
5 *
6 * I would like to acknowledge my mentor Benjamin Larsson for his timely
7 * help and excelleng guidance throughout the project.
8 * Thanks a lot Benjamin.
9 * 6 *
10 * For exponent decoding the code is inspired by the code in liba52 by 7 * For exponent decoding the code is inspired by the code in liba52 by
11 * Michel Lespinasse and Aaron Holtzman. 8 * Michel Lespinasse and Aaron Holtzman.
12 * http://liba52.sourceforge.net 9 * http://liba52.sourceforge.net
13 * 10 *
14 * Thanks Makoto Matsumoto and Takuji Nishimura for the Mersenne Twister. 11 * The Mersenne Twister is based on code written by Makoto Matsumoto and
12 * Takuji Nishimura.
15 * 13 *
16 * Copyright (c) 2006 Kartikey Mahendra BHATT (bhattkm at gmail dot com). 14 * This file is part of FFmpeg.
17 * Something is wrong up on cloud # 9!
18 * 15 *
19 * This library is free software; you can redistribute it and/or 16 * FFmpeg is free software; you can redistribute it and/or
20 * modify it under the terms of the GNU General Public 17 * modify it the terms of the GNU General Public
21 * License as published by the Free Software Foundation; either 18 * License as published by the Free Software Foundation; either
22 * version 2 of the License, or (at your option) any later version. 19 * version 2 of the License, or (at your option) any later version.
23 * 20 *
24 * This library is distributed in the hope that it will be useful, 21 * FFmpeg is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of 22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
27 * General Public License for more details. 24 * General Public License for more details.
28 * 25 *
29 * You should have received a copy of the GNU General Public 26 * You should have received a copy of the GNU General Public
30 * License along with this library; if not, write to the Free Software 27 * License along with FFmpeg; if not, write to the Free Software
31 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 28 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
32 */ 29 */
33 30
34 #include <stdio.h> 31 #include <stdio.h>
35 #include <stddef.h> 32 #include <stddef.h>