]> git.sesse.net Git - vlc/blob - src/video_decoder/vdec_idct.c
Correction de 1242 fautes de frappe et includes foireux. Presque tout
[vlc] / src / video_decoder / vdec_idct.c
1 /*****************************************************************************
2  * vdec_idct.c : IDCT functions
3  * (c)1999 VideoLAN
4  *****************************************************************************/
5
6 /*****************************************************************************
7  * Preamble
8  *****************************************************************************/
9 #include <errno.h>
10 #include <stdlib.h>
11 #include <stdio.h>
12 #include <unistd.h>
13 #include <string.h>
14 #include <sys/uio.h>
15 #include <X11/Xlib.h>
16 #include <X11/extensions/XShm.h>
17
18 #include "config.h"
19 #include "common.h"
20 #include "mtime.h"
21 #include "vlc_thread.h"
22
23 #include "intf_msg.h"
24 #include "debug.h"                    /* ?? temporaire, requis par netlist.h */
25
26 #include "input.h"
27 #include "input_netlist.h"
28 #include "decoder_fifo.h"
29 #include "video.h"
30 #include "video_output.h"
31
32 #include "vdec_idct.h"
33 #include "video_decoder.h"
34 #include "vdec_motion.h"
35
36 #include "vpar_blocks.h"
37 #include "vpar_headers.h"
38 #include "video_fifo.h"
39 #include "video_parser.h"
40
41 /*
42  * Local prototypes
43  */
44
45 /* Our current implementation is a fast DCT, we might move to a fast DFT or
46  * an MMX DCT in the future. */
47
48 /*****************************************************************************
49  * vdec_DummyIDCT : dummy function that does nothing
50  *****************************************************************************/
51 void vdec_DummyIDCT( elem_t * p_block, int i_idontcare )
52 {
53 }
54
55 /*****************************************************************************
56  * vdec_SparseIDCT : IDCT function for sparse matrices
57  *****************************************************************************/
58 void vdec_SparseIDCT( elem_t * p_block, int i_sparse_pos )
59 {
60     /* Copy from mpeg_play */
61 }
62
63 /*****************************************************************************
64  * vdec_IDCT : IDCT function for normal matrices
65  *****************************************************************************/
66 void vdec_IDCT( elem_t * p_block, int i_idontcare )
67 {
68
69 }