comparison jfdctfst.c @ 3669:9b98e18a1b1c libavcodec

Add copyright notice from the Independent JPEG Group instead of referring to a README we don't include.
author diego
date Sun, 03 Sep 2006 16:15:29 +0000
parents bfabfdf9ce55
children d6f83e2f8804
comparison
equal deleted inserted replaced
3668:34d76180e5d0 3669:9b98e18a1b1c
1 /* 1 /*
2 * jfdctfst.c 2 * jfdctfst.c
3 * 3 *
4 * Copyright (C) 1994-1996, Thomas G. Lane.
5 * This file is part of the Independent JPEG Group's software. 4 * This file is part of the Independent JPEG Group's software.
6 * For conditions of distribution and use, see the accompanying README file. 5 *
6 * The authors make NO WARRANTY or representation, either express or implied,
7 * with respect to this software, its quality, accuracy, merchantability, or
8 * fitness for a particular purpose. This software is provided "AS IS", and
9 * you, its user, assume the entire risk as to its quality and accuracy.
10 *
11 * This software is copyright (C) 1994-1996, Thomas G. Lane.
12 * All Rights Reserved except as specified below.
13 *
14 * Permission is hereby granted to use, copy, modify, and distribute this
15 * software (or portions thereof) for any purpose, without fee, subject to
16 * these conditions:
17 * (1) If any part of the source code for this software is distributed, then
18 * this README file must be included, with this copyright and no-warranty
19 * notice unaltered; and any additions, deletions, or changes to the original
20 * files must be clearly indicated in accompanying documentation.
21 * (2) If only executable code is distributed, then the accompanying
22 * documentation must state that "this software is based in part on the work
23 * of the Independent JPEG Group".
24 * (3) Permission for use of this software is granted only if the user accepts
25 * full responsibility for any undesirable consequences; the authors accept
26 * NO LIABILITY for damages of any kind.
27 *
28 * These conditions apply to any software derived from or based on the IJG
29 * code, not just to the unmodified library. If you use our work, you ought
30 * to acknowledge us.
31 *
32 * Permission is NOT granted for the use of any IJG author's name or company
33 * name in advertising or publicity relating to this software or products
34 * derived from it. This software may be referred to only as "the Independent
35 * JPEG Group's software".
36 *
37 * We specifically permit and encourage the use of this software as the basis
38 * of commercial products, provided that all warranty or liability claims are
39 * assumed by the product vendor.
7 * 40 *
8 * This file contains a fast, not so accurate integer implementation of the 41 * This file contains a fast, not so accurate integer implementation of the
9 * forward DCT (Discrete Cosine Transform). 42 * forward DCT (Discrete Cosine Transform).
10 * 43 *
11 * A 2-D DCT can be done by 1-D DCT on each row followed by 1-D DCT 44 * A 2-D DCT can be done by 1-D DCT on each row followed by 1-D DCT