annotate faanidct.h @ 6416:9cd577ad9c0b libavcodec

Stuffing bytes to not violate minimum legality rate. Note, this is a joke and not related to MPEG CBR.
author michael
date Tue, 26 Feb 2008 20:17:30 +0000
parents 7f9e2b5893fc
children 8d510925c2e5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
6407
7f9e2b5893fc floating point AAN IDCT
michael
parents:
diff changeset
22 void ff_faanidct(DCTELEM block[64]);
7f9e2b5893fc floating point AAN IDCT
michael
parents:
diff changeset
23 void ff_faanidct_add(uint8_t *dest, int line_size, DCTELEM block[64]);
7f9e2b5893fc floating point AAN IDCT
michael
parents:
diff changeset
24 void ff_faanidct_put(uint8_t *dest, int line_size, DCTELEM block[64]);