libavcodec/xvididct.h
a786c825
 /*
f54e01c2
  * This file is part of FFmpeg.
a786c825
  *
f54e01c2
  * FFmpeg is free software; you can redistribute it and/or
a786c825
  * 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.
  *
f54e01c2
  * FFmpeg is distributed in the hope that it will be useful,
a786c825
  * 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
f54e01c2
  * License along with FFmpeg; if not, write to the Free Software
a786c825
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #ifndef AVCODEC_XVIDIDCT_H
 #define AVCODEC_XVIDIDCT_H
 
7a1d6ddd
 #include <stdint.h>
 
a786c825
 #include "avcodec.h"
 #include "idctdsp.h"
 
7a1d6ddd
 void ff_xvid_idct(int16_t *const in);
a786c825
 
dcb7c868
 void ff_xvid_idct_init(IDCTDSPContext *c, AVCodecContext *avctx);
a786c825
 
7a1d6ddd
 void ff_xvid_idct_init_x86(IDCTDSPContext *c, AVCodecContext *avctx,
                            unsigned high_bit_depth);
b50910e9
 void ff_xvid_idct_init_mips(IDCTDSPContext *c, AVCodecContext *avctx,
                             unsigned high_bit_depth);
298b3b6c
 
a786c825
 #endif /* AVCODEC_XVIDIDCT_H */