libavcodec/h264idct.c
0fa8158d
 /*
  * H.264 IDCT
  * Copyright (c) 2004 Michael Niedermayer <michaelni@gmx.at>
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
0fa8158d
  * 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.
0fa8158d
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
0fa8158d
  * 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
0fa8158d
  */
115329f1
 
0fa8158d
 /**
ba87f080
  * @file
0fa8158d
  * H.264 IDCT.
  * @author Michael Niedermayer <michaelni@gmx.at>
  */
115329f1
 
6a443040
 #include "h264idct.h"
 
8dbe5856
 #define BIT_DEPTH 8
15fb393b
 #include "h264idct_template.c"
8dbe5856
 #undef BIT_DEPTH
 
 #define BIT_DEPTH 9
19a0729b
 #include "h264idct_template.c"
8dbe5856
 #undef BIT_DEPTH
 
 #define BIT_DEPTH 10
19a0729b
 #include "h264idct_template.c"
8dbe5856
 #undef BIT_DEPTH
69d5e40e
 
 #define BIT_DEPTH 12
 #include "h264idct_template.c"
 #undef BIT_DEPTH
 
 #define BIT_DEPTH 14
 #include "h264idct_template.c"
 #undef BIT_DEPTH