libavcodec/faandct.h
65e4c8c9
 /*
  * Floating point AAN DCT
  * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
65e4c8c9
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
b78e7197
  * version 2.1 of the License, or (at your option) any later version.
65e4c8c9
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
65e4c8c9
  * 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
b78e7197
  * License along with FFmpeg; if not, write to the Free Software
5509bffa
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
65e4c8c9
  */
 
 /**
ba87f080
  * @file
115329f1
  * @brief
65e4c8c9
  *     Floating point AAN DCT
  * @author Michael Niedermayer <michaelni@gmx.at>
  */
115329f1
 
98790382
 #ifndef AVCODEC_FAANDCT_H
 #define AVCODEC_FAANDCT_H
699b3f99
 
88bd7fdc
 #include <stdint.h>
99545457
 
88bd7fdc
 void ff_faandct(int16_t *data);
 void ff_faandct248(int16_t *data);
699b3f99
 
98790382
 #endif /* AVCODEC_FAANDCT_H */