Accelerate the network port SpinBox chooser.
[vlc/davidf-public.git] / include / vlc_filter.h
blobd53365c497a89d7cad89662900d66d17bf4b8412
1 /*****************************************************************************
2 * vlc_filter.h: filter related structures and functions
3 *****************************************************************************
4 * Copyright (C) 1999-2008 the VideoLAN team
5 * $Id$
7 * Authors: Gildas Bazin <gbazin@videolan.org>
8 * Antoine Cellerier <dionoea at videolan dot org>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 #ifndef _VLC_FILTER_H
26 #define _VLC_FILTER_H 1
28 #include <vlc_es.h>
30 /**
31 * \file
32 * This file defines the structure and types used by video and audio filters
35 typedef struct filter_owner_sys_t filter_owner_sys_t;
37 /** Structure describing a filter
38 * @warning BIG FAT WARNING : the code relies in the first 4 members of
39 * filter_t and decoder_t to be the same, so if you have anything to add,
40 * do it at the end of the structure.
42 struct filter_t
44 VLC_COMMON_MEMBERS
46 /* Module properties */
47 module_t * p_module;
48 filter_sys_t * p_sys;
50 /* Input format */
51 es_format_t fmt_in;
53 /* Output format of filter */
54 es_format_t fmt_out;
55 bool b_allow_fmt_out_change;
57 /* Filter configuration */
58 config_chain_t * p_cfg;
60 picture_t * ( * pf_video_filter ) ( filter_t *, picture_t * );
61 block_t * ( * pf_audio_filter ) ( filter_t *, block_t * );
62 void ( * pf_video_blend ) ( filter_t *, picture_t *,
63 picture_t *, picture_t *,
64 int, int, int );
66 subpicture_t * ( *pf_sub_filter ) ( filter_t *, mtime_t );
67 int ( *pf_render_text ) ( filter_t *, subpicture_region_t *,
68 subpicture_region_t * );
69 int ( *pf_render_html ) ( filter_t *, subpicture_region_t *,
70 subpicture_region_t * );
73 * Buffers allocation
76 /* Audio output callbacks */
77 block_t * ( * pf_audio_buffer_new) ( filter_t *, int );
79 /* Video output callbacks */
80 picture_t * ( * pf_vout_buffer_new) ( filter_t * );
81 void ( * pf_vout_buffer_del) ( filter_t *, picture_t * );
82 /* void ( * pf_picture_link) ( picture_t * );
83 void ( * pf_picture_unlink) ( picture_t * ); */
85 /* SPU output callbacks */
86 subpicture_t * ( * pf_sub_buffer_new) ( filter_t * );
87 void ( * pf_sub_buffer_del) ( filter_t *, subpicture_t * );
89 /* Private structure for the owner of the decoder */
90 filter_owner_sys_t *p_owner;
94 /**
95 * Create a picture_t *(*)( filter_t *, picture_t * ) compatible wrapper
96 * using a void (*)( filter_t *, picture_t *, picture_t * ) function
98 * Currently used by the chroma video filters
100 #define VIDEO_FILTER_WRAPPER( name ) \
101 static picture_t *name ## _Filter ( filter_t *p_filter, \
102 picture_t *p_pic ) \
104 picture_t *p_outpic = p_filter->pf_vout_buffer_new( p_filter ); \
105 if( !p_outpic ) \
107 msg_Warn( p_filter, "can't get output picture" ); \
108 if( p_pic->pf_release ) \
109 p_pic->pf_release( p_pic ); \
110 return NULL; \
113 name( p_filter, p_pic, p_outpic ); \
115 p_outpic->date = p_pic->date; \
116 p_outpic->b_force = p_pic->b_force; \
117 p_outpic->i_nb_fields = p_pic->i_nb_fields; \
118 p_outpic->b_progressive = p_pic->b_progressive; \
119 p_outpic->b_top_field_first = p_pic->b_top_field_first; \
121 if( p_pic->pf_release ) \
122 p_pic->pf_release( p_pic ); \
123 return p_outpic; \
127 * Filter chain management API
130 typedef struct filter_chain_t filter_chain_t;
132 VLC_EXPORT( filter_chain_t *, __filter_chain_New, ( vlc_object_t *, const char *, bool, int (*)( filter_t *, void * ), void (*)( filter_t * ), void * ) );
133 #define filter_chain_New( a, b, c, d, e, f ) __filter_chain_New( VLC_OBJECT( a ), b, c, d, e, f )
134 VLC_EXPORT( void, filter_chain_Delete, ( filter_chain_t * ) );
135 VLC_EXPORT( void, filter_chain_Reset, ( filter_chain_t *, const es_format_t *, const es_format_t * ) );
137 VLC_EXPORT( filter_t *, filter_chain_AppendFilter, ( filter_chain_t *, const char *, config_chain_t *, const es_format_t *, const es_format_t * ) );
138 VLC_EXPORT( int, filter_chain_AppendFromString, ( filter_chain_t *, const char * ) );
139 VLC_EXPORT( int, filter_chain_DeleteFilter, ( filter_chain_t *, filter_t * ) );
141 VLC_EXPORT( filter_t *, filter_chain_GetFilter, ( filter_chain_t *, int, const char * ) );
142 VLC_EXPORT( int, filter_chain_GetLength, ( filter_chain_t * ) );
143 VLC_EXPORT( const es_format_t *, filter_chain_GetFmtOut, ( filter_chain_t * ) );
146 * Apply the filter chain
148 VLC_EXPORT( picture_t *, filter_chain_VideoFilter, ( filter_chain_t *, picture_t * ) );
149 VLC_EXPORT( block_t *, filter_chain_AudioFilter, ( filter_chain_t *, block_t * ) );
150 VLC_EXPORT( void, filter_chain_SubFilter, ( filter_chain_t *, mtime_t ) );
152 #endif /* _VLC_FILTER_H */