comparison armv4l/simple_idct_armv5te.S @ 3947:c8c591fe26f8 libavcodec

Change license headers to say 'FFmpeg' instead of 'this program/this library' and fix GPL/LGPL version mismatches.
author diego
date Sat, 07 Oct 2006 15:30:46 +0000
parents cf04e15a72ac
children 97d82c7585b4
comparison
equal deleted inserted replaced
3946:ab0797f2e397 3947:c8c591fe26f8
2 * Simple IDCT 2 * Simple IDCT
3 * 3 *
4 * Copyright (c) 2001 Michael Niedermayer <michaelni@gmx.at> 4 * Copyright (c) 2001 Michael Niedermayer <michaelni@gmx.at>
5 * Copyright (c) 2006 Mans Rullgard <mru@inprovide.com> 5 * Copyright (c) 2006 Mans Rullgard <mru@inprovide.com>
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This file is part of FFmpeg.
8 *
9 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public 10 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either 11 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 12 * version 2.1 of the License, or (at your option) any later version.
11 * 13 *
12 * This library is distributed in the hope that it will be useful, 14 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details. 17 * Lesser General Public License for more details.
16 * 18 *
17 * You should have received a copy of the GNU Lesser General Public 19 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software 20 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 22 */
21 23
22 #define W1 22725 /* cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 */ 24 #define W1 22725 /* cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 */
23 #define W2 21407 /* cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 */ 25 #define W2 21407 /* cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 */