comparison libaf/af_surround.c @ 28227:089d5341f9bc

Fix two more instances of nonstandard license headers.
author diego
date Mon, 05 Jan 2009 11:06:28 +0000
parents b2402b4f0afa
children 8c706ce21c6f
comparison
equal deleted inserted replaced
28226:de6ff5c366ea 28227:089d5341f9bc
1 /* 1 /*
2 This is an libaf filter to do simple decoding of matrixed surround 2 * Filter to do simple decoding of matrixed surround sound.
3 sound. This will provide a (basic) surround-sound effect from 3 * This will provide a (basic) surround-sound effect from
4 audio encoded for Dolby Surround, Pro Logic etc. 4 * audio encoded for Dolby Surround, Pro Logic etc.
5 5 *
6 * This program is free software; you can redistribute it and/or modify 6 * original author: Steve Davies <steve@daviesfam.org>
7 *
8 * This file is part of MPlayer.
9 *
10 * MPlayer is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by 11 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or 12 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version. 13 * (at your option) any later version.
10 * 14 *
11 * This program is distributed in the hope that it will be useful, 15 * MPlayer is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details. 18 * GNU General Public License for more details.
15 * 19 *
16 * You should have received a copy of the GNU General Public License along 20 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc., 21 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 23 */
20 Original author: Steve Davies <steve@daviesfam.org>
21 */
22 24
23 /* The principle: Make rear channels by extracting anti-phase data 25 /* The principle: Make rear channels by extracting anti-phase data
24 from the front channels, delay by 20ms and feed to rear in anti-phase 26 from the front channels, delay by 20ms and feed to rear in anti-phase
25 */ 27 */
26 28