]> git.sesse.net Git - vlc/blob - include/vdec_idct.h
97309a122c1ac8e31091f6627295403356a7ae68
[vlc] / include / vdec_idct.h
1 /*****************************************************************************
2  * vdec_idct.h : types for the inverse discrete cosine transform
3  * (c)1999 VideoLAN
4  *****************************************************************************
5  *****************************************************************************
6  * Requires:
7  *  "config.h"
8  *  "common.h"
9  *  "vlc_thread.h"
10  *  "video_parser.h"
11  *****************************************************************************/
12
13 /*****************************************************************************
14  * Common declarations
15  *****************************************************************************/ 
16 #define elem_t short
17
18 /*****************************************************************************
19  * Function pointers
20  *****************************************************************************/
21 typedef void (*f_idct_t)( elem_t*, int );
22
23 /*****************************************************************************
24  * Prototypes
25  *****************************************************************************/