Mercurial > libavcodec.hg
annotate faanidct.h @ 12409:91db982aaaad libavcodec
fixed some return values and deprecated CODEC_TYPE_VIDEO.
dithering (faster) along a linear gradient now.
author | bindhammer |
---|---|
date | Tue, 24 Aug 2010 14:02:31 +0000 |
parents | c4a4495715dd |
children |
rev | line source |
---|---|
6416
9cd577ad9c0b
Stuffing bytes to not violate minimum legality rate.
michael
parents:
6407
diff
changeset
|
1 /* |
9cd577ad9c0b
Stuffing bytes to not violate minimum legality rate.
michael
parents:
6407
diff
changeset
|
2 * Floating point AAN IDCT |
9cd577ad9c0b
Stuffing bytes to not violate minimum legality rate.
michael
parents:
6407
diff
changeset
|
3 * Copyright (c) 2008 Michael Niedermayer <michaelni@gmx.at> |
9cd577ad9c0b
Stuffing bytes to not violate minimum legality rate.
michael
parents:
6407
diff
changeset
|
4 * |
9cd577ad9c0b
Stuffing bytes to not violate minimum legality rate.
michael
parents:
6407
diff
changeset
|
5 * This file is part of FFmpeg. |
9cd577ad9c0b
Stuffing bytes to not violate minimum legality rate.
michael
parents:
6407
diff
changeset
|
6 * |
9cd577ad9c0b
Stuffing bytes to not violate minimum legality rate.
michael
parents:
6407
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
9cd577ad9c0b
Stuffing bytes to not violate minimum legality rate.
michael
parents:
6407
diff
changeset
|
8 * modify it under the terms of the GNU Lesser General Public |
9cd577ad9c0b
Stuffing bytes to not violate minimum legality rate.
michael
parents:
6407
diff
changeset
|
9 * License as published by the Free Software Foundation; either |
9cd577ad9c0b
Stuffing bytes to not violate minimum legality rate.
michael
parents:
6407
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
9cd577ad9c0b
Stuffing bytes to not violate minimum legality rate.
michael
parents:
6407
diff
changeset
|
11 * |
9cd577ad9c0b
Stuffing bytes to not violate minimum legality rate.
michael
parents:
6407
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
9cd577ad9c0b
Stuffing bytes to not violate minimum legality rate.
michael
parents:
6407
diff
changeset
|
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
9cd577ad9c0b
Stuffing bytes to not violate minimum legality rate.
michael
parents:
6407
diff
changeset
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
9cd577ad9c0b
Stuffing bytes to not violate minimum legality rate.
michael
parents:
6407
diff
changeset
|
15 * Lesser General Public License for more details. |
9cd577ad9c0b
Stuffing bytes to not violate minimum legality rate.
michael
parents:
6407
diff
changeset
|
16 * |
9cd577ad9c0b
Stuffing bytes to not violate minimum legality rate.
michael
parents:
6407
diff
changeset
|
17 * You should have received a copy of the GNU Lesser General Public |
9cd577ad9c0b
Stuffing bytes to not violate minimum legality rate.
michael
parents:
6407
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
9cd577ad9c0b
Stuffing bytes to not violate minimum legality rate.
michael
parents:
6407
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
9cd577ad9c0b
Stuffing bytes to not violate minimum legality rate.
michael
parents:
6407
diff
changeset
|
20 */ |
9cd577ad9c0b
Stuffing bytes to not violate minimum legality rate.
michael
parents:
6407
diff
changeset
|
21 |
7760 | 22 #ifndef AVCODEC_FAANIDCT_H |
23 #define AVCODEC_FAANIDCT_H | |
6419 | 24 |
6420 | 25 #include <stdint.h> |
26 #include "dsputil.h" | |
27 | |
6407 | 28 void ff_faanidct(DCTELEM block[64]); |
29 void ff_faanidct_add(uint8_t *dest, int line_size, DCTELEM block[64]); | |
30 void ff_faanidct_put(uint8_t *dest, int line_size, DCTELEM block[64]); | |
6419 | 31 |
7760 | 32 #endif /* AVCODEC_FAANIDCT_H */ |