]> git.sesse.net Git - vlc/blob - plugins/idct/idct_mmxext.c
0d8122842ff6427131e49dd587bb3af5d0bf475e
[vlc] / plugins / idct / idct_mmxext.c
1 /*****************************************************************************
2  * idct_mmxext.c : MMX EXT IDCT functions
3  *****************************************************************************
4  * Copyright (C) 1999, 2000 VideoLAN
5  * $Id: idct_mmxext.c,v 1.1 2001/01/16 13:26:46 sam Exp $
6  *
7  * Authors: 
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  * 
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include "defs.h"
28
29 #include <stdlib.h>
30
31 #include "config.h"
32 #include "common.h"
33 #include "threads.h"
34 #include "mtime.h"
35 #include "tests.h"
36
37 #include "video.h"
38 #include "video_output.h"
39
40 #include "video_decoder.h"
41
42 #include "idct.h"
43
44 /*****************************************************************************
45  * Local and extern prototypes.
46  *****************************************************************************/
47 void vdec_InitIDCT   ( vdec_thread_t * p_vdec);
48 void vdec_SparseIDCT ( vdec_thread_t * p_vdec, dctelem_t * p_block,
49                        int i_sparse_pos);
50 void vdec_IDCT       ( vdec_thread_t * p_vdec, dctelem_t * p_block,
51                        int i_idontcare );
52
53
54 /*****************************************************************************
55  * vdec_InitIDCT : initialize datas for vdec_SparseIDCT
56  *****************************************************************************/
57 void vdec_InitIDCT (vdec_thread_t * p_vdec)
58 {
59     return;
60 }
61
62 /*****************************************************************************
63  * vdec_IDCT : IDCT function for normal matrices
64  *****************************************************************************/
65 void vdec_IDCT( vdec_thread_t * p_vdec, dctelem_t * p_block,
66                        int i_idontcare )
67 {
68     return;
69 }
70
71 /*****************************************************************************
72  * vdec_SparseIDCT : IDCT function for sparse matrices
73  *****************************************************************************/
74 void vdec_SparseIDCT( vdec_thread_t * p_vdec, dctelem_t * p_block,
75                       int i_sparse_pos )
76 {
77     return;
78 }
79