Files
FFmpeg/libavcodec/faandct.h
T

38 lines
1.1 KiB
C
Raw Normal View History

2003-10-22 18:26:38 +00:00
/*
* Floating point AAN DCT
* Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
2003-10-22 18:26:38 +00:00
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
2003-10-22 18:26:38 +00:00
*
* FFmpeg is distributed in the hope that it will be useful,
2003-10-22 18:26:38 +00: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
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2003-10-22 18:26:38 +00:00
*/
/**
* @file
2005-12-17 18:14:38 +00:00
* @brief
2003-10-22 18:26:38 +00:00
* Floating point AAN DCT
* @author Michael Niedermayer <michaelni@gmx.at>
*/
2005-12-17 18:14:38 +00:00
#ifndef AVCODEC_FAANDCT_H
#define AVCODEC_FAANDCT_H
2007-06-17 00:01:30 +00:00
2013-01-20 01:02:29 +01:00
#include <stdint.h>
2007-06-16 22:59:13 +00:00
2013-01-20 01:02:29 +01:00
void ff_faandct(int16_t *data);
void ff_faandct248(int16_t *data);
2007-06-17 00:01:30 +00:00
#endif /* AVCODEC_FAANDCT_H */