annotate faanidct.h @ 12530:63edd10ad4bc libavcodec tip

Try to fix crashes introduced by r25218 r25218 made assumptions about the existence of past reference frames that weren't necessarily true.
author darkshikari
date Tue, 28 Sep 2010 09:06:22 +0000
parents c4a4495715dd
children
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
7760
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 6420
diff changeset
22 #ifndef AVCODEC_FAANIDCT_H
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 6420
diff changeset
23 #define AVCODEC_FAANIDCT_H
6419
8d510925c2e5 Add multiple inclusion guards.
diego
parents: 6416
diff changeset
24
6420
95dc96b1e4f4 include dependencies ...
michael
parents: 6419
diff changeset
25 #include <stdint.h>
95dc96b1e4f4 include dependencies ...
michael
parents: 6419
diff changeset
26 #include "dsputil.h"
95dc96b1e4f4 include dependencies ...
michael
parents: 6419
diff changeset
27
6407
7f9e2b5893fc floating point AAN IDCT
michael
parents:
diff changeset
28 void ff_faanidct(DCTELEM block[64]);
7f9e2b5893fc floating point AAN IDCT
michael
parents:
diff changeset
29 void ff_faanidct_add(uint8_t *dest, int line_size, DCTELEM block[64]);
7f9e2b5893fc floating point AAN IDCT
michael
parents:
diff changeset
30 void ff_faanidct_put(uint8_t *dest, int line_size, DCTELEM block[64]);
6419
8d510925c2e5 Add multiple inclusion guards.
diego
parents: 6416
diff changeset
31
7760
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 6420
diff changeset
32 #endif /* AVCODEC_FAANIDCT_H */