]> git.sesse.net Git - vlc/blob - include/vlc_filter.h
* src/video_output/vout_subpictures.c: support for subpictures filters.
[vlc] / include / vlc_filter.h
1 /*****************************************************************************
2  * vlc_codec.h: codec 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     picture_t *         ( * pf_video_filter ) ( filter_t *, picture_t * );
55     block_t *           ( * pf_audio_filter ) ( filter_t *, block_t * );
56     void                ( * pf_video_blend )  ( filter_t *, picture_t *,
57                                                 picture_t *, picture_t *,
58                                                 int, int );
59
60     subpicture_t *      ( *pf_sub_filter ) ( filter_t *, mtime_t );
61     subpicture_t *      ( *pf_render_string ) ( filter_t *, block_t * );
62
63     /*
64      * Buffers allocation
65      */
66
67     /* Audio output callbacks */
68     block_t *       ( * pf_audio_buffer_new) ( filter_t *, int );
69
70     /* Video output callbacks */
71     picture_t     * ( * pf_vout_buffer_new) ( filter_t * );
72     void            ( * pf_vout_buffer_del) ( filter_t *, picture_t * );
73     void            ( * pf_picture_link)    ( filter_t *, picture_t * );
74     void            ( * pf_picture_unlink)  ( filter_t *, picture_t * );
75
76     /* SPU output callbacks */
77     subpicture_t *  ( * pf_sub_buffer_new) ( filter_t * );
78     void            ( * pf_sub_buffer_del) ( filter_t *, subpicture_t * );
79
80     /* Private structure for the owner of the decoder */
81     filter_owner_sys_t *p_owner;
82 };
83
84 /**
85  * @}
86  */
87
88 #endif /* _VLC_FILTER_H */