]> git.sesse.net Git - vlc/blob - include/vlc_filter.h
* ALL : ported the deinterlace module to video filter2. New
[vlc] / include / vlc_filter.h
1 /*****************************************************************************
2  * vlc_filter.h: filter related structures
3  *****************************************************************************
4  * Copyright (C) 1999-2003 VideoLAN
5  * $Id$
6  *
7  * Authors: Gildas Bazin <gbazin@videolan.org>
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 #ifndef _VLC_FILTER_H
24 #define _VLC_FILTER_H 1
25
26 /**
27  * \file
28  * This file defines the structure and types used by video and audio filters
29  */
30
31 typedef struct filter_owner_sys_t filter_owner_sys_t;
32
33 /**
34  * \defgroup filter Filter
35  *
36  * The structure describing a filter
37  *
38  * @{
39  */
40 struct filter_t
41 {
42     VLC_COMMON_MEMBERS
43
44     /* Module properties */
45     module_t *          p_module;
46     filter_sys_t *      p_sys;
47
48     /* Input format */
49     es_format_t         fmt_in;
50
51     /* Output format of filter */
52     es_format_t         fmt_out;
53
54     /* Filter configuration */
55     sout_cfg_t *        p_cfg;
56
57     picture_t *         ( * pf_video_filter ) ( filter_t *, picture_t * );
58     block_t *           ( * pf_audio_filter ) ( filter_t *, block_t * );
59     void                ( * pf_video_blend )  ( filter_t *, picture_t *,
60                                                 picture_t *, picture_t *,
61                                                 int, int, int );
62
63     subpicture_t *      ( *pf_sub_filter ) ( filter_t *, mtime_t );
64     int                 ( *pf_render_text ) ( filter_t *, subpicture_region_t *, subpicture_region_t * );
65
66     /*
67      * Buffers allocation
68      */
69
70     /* Audio output callbacks */
71     block_t *       ( * pf_audio_buffer_new) ( filter_t *, int );
72
73     /* Video output callbacks */
74     picture_t     * ( * pf_vout_buffer_new) ( filter_t * );
75     void            ( * pf_vout_buffer_del) ( filter_t *, picture_t * );
76     void            ( * pf_picture_link)    ( filter_t *, picture_t * );
77     void            ( * pf_picture_unlink)  ( filter_t *, picture_t * );
78
79     /* SPU output callbacks */
80     subpicture_t *  ( * pf_sub_buffer_new) ( filter_t * );
81     void            ( * pf_sub_buffer_del) ( filter_t *, subpicture_t * );
82
83     /* Private structure for the owner of the decoder */
84     filter_owner_sys_t *p_owner;
85 };
86
87 /**
88  * @}
89  */
90
91 #endif /* _VLC_FILTER_H */