2003-10-22 21:26:38 +03:00
|
|
|
/*
|
|
|
|
* Floating point AAN DCT
|
|
|
|
* Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
|
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2003-10-22 21:26:38 +03:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 18:30:46 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2003-10-22 21:26:38 +03:00
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2003-10-22 21:26:38 +03:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 18:30:46 +03:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-13 00:43:26 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2003-10-22 21:26:38 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2009-02-01 04:00:19 +02:00
|
|
|
* @file libavcodec/faandct.h
|
2005-12-17 20:14:38 +02:00
|
|
|
* @brief
|
2003-10-22 21:26:38 +03:00
|
|
|
* Floating point AAN DCT
|
|
|
|
* @author Michael Niedermayer <michaelni@gmx.at>
|
|
|
|
*/
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2008-08-31 10:39:47 +03:00
|
|
|
#ifndef AVCODEC_FAANDCT_H
|
|
|
|
#define AVCODEC_FAANDCT_H
|
2007-06-17 03:01:30 +03:00
|
|
|
|
2007-06-17 01:59:13 +03:00
|
|
|
#include "dsputil.h"
|
|
|
|
|
2003-10-23 12:11:56 +03:00
|
|
|
#define FAAN_POSTSCALE
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-10-22 21:26:38 +03:00
|
|
|
void ff_faandct(DCTELEM * data);
|
2003-10-25 03:32:54 +03:00
|
|
|
void ff_faandct248(DCTELEM * data);
|
2007-06-17 03:01:30 +03:00
|
|
|
|
2008-08-31 10:39:47 +03:00
|
|
|
#endif /* AVCODEC_FAANDCT_H */
|