]> git.sesse.net Git - vlc/blob - modules/codec/mpeg_video/decoder.h
* ./modules/*: moved plugins to the new tree. Yet untested builds include
[vlc] / modules / codec / mpeg_video / decoder.h
1 /*****************************************************************************
2  * video_decoder.h : video decoder thread
3  *****************************************************************************
4  * Copyright (C) 1999, 2000 VideoLAN
5  * $Id: decoder.h,v 1.1 2002/08/04 17:23:42 sam Exp $
6  *
7  * Authors: Christophe Massiot <massiot@via.ecp.fr>
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  * vdec_thread_t: video decoder thread descriptor
26  *****************************************************************************/
27 typedef struct vdec_thread_s
28 {
29     VLC_COMMON_MEMBERS
30
31     /* IDCT iformations */
32     void *               p_idct_data;
33
34     /* Input properties */
35     struct vdec_pool_s * p_pool;
36
37 } vdec_thread_t;
38
39 /*****************************************************************************
40  * Prototypes
41  *****************************************************************************/
42 void            vdec_InitThread         ( vdec_thread_t * );
43 void            vdec_EndThread          ( vdec_thread_t * );
44 void            vdec_DecodeMacroblockBW ( vdec_thread_t *, macroblock_t * );
45 void            vdec_DecodeMacroblock420( vdec_thread_t *, macroblock_t * );
46 void            vdec_DecodeMacroblock422( vdec_thread_t *, macroblock_t * );
47 void            vdec_DecodeMacroblock444( vdec_thread_t *, macroblock_t * );
48 vdec_thread_t * vdec_CreateThread       ( struct vdec_pool_s * );
49 void            vdec_DestroyThread      ( vdec_thread_t * );
50