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