comparison 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
comparison
equal deleted inserted replaced
6415:2eb1b18d6282 6416:9cd577ad9c0b
1 /*
2 * Floating point AAN IDCT
3 * Copyright (c) 2008 Michael Niedermayer <michaelni@gmx.at>
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
1 void ff_faanidct(DCTELEM block[64]); 22 void ff_faanidct(DCTELEM block[64]);
2 void ff_faanidct_add(uint8_t *dest, int line_size, DCTELEM block[64]); 23 void ff_faanidct_add(uint8_t *dest, int line_size, DCTELEM block[64]);
3 void ff_faanidct_put(uint8_t *dest, int line_size, DCTELEM block[64]); 24 void ff_faanidct_put(uint8_t *dest, int line_size, DCTELEM block[64]);