Fix a memleak when using the --use-stream-immediate option.
[vlc.git] / include / vlc_filter.h
blob1262126c6b31ccd1e8670221f856fde3741d684b
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;
93 /**
94 * This function will return a new picture usable by p_filter as an output
95 * buffer. You have to release it using filter_DeletePicture or by returning
96 * it to the caller as a pf_video_filter return value.
97 * Provided for convenience.
99 static inline picture_t *filter_NewPicture( filter_t *p_filter )
101 picture_t *p_picture = p_filter->pf_vout_buffer_new( p_filter );
102 if( !p_picture )
103 msg_Warn( p_filter, "can't get output picture" );
104 return p_picture;
108 * This function will release a picture create by filter_NewPicture.
109 * Provided for convenience.
111 static inline void filter_DeletePicture( filter_t *p_filter, picture_t *p_picture )
113 p_filter->pf_vout_buffer_del( p_filter, p_picture );
117 * This function will return a new subpicture usable by p_filter as an output
118 * buffer. You have to release it using filter_DeleteSubpicture or by returning
119 * it to the caller as a pf_sub_filter return value.
120 * Provided for convenience.
122 static inline subpicture_t *filter_NewSubpicture( filter_t *p_filter )
124 subpicture_t *p_subpicture = p_filter->pf_sub_buffer_new( p_filter );
125 if( !p_subpicture )
126 msg_Warn( p_filter, "can't get output subpicture" );
127 return p_subpicture;
131 * This function will release a subpicture create by filter_NewSubicture.
132 * Provided for convenience.
134 static inline void filter_DeleteSubpicture( filter_t *p_filter, subpicture_t *p_subpicture )
136 p_filter->pf_sub_buffer_del( p_filter, p_subpicture );
140 * This function will return a new audio buffer usable by p_filter as an
141 * output buffer. You have to release it using block_Release or by returning
142 * it to the caller as a pf_audio_filter return value.
143 * Provided for convenience.
145 static inline block_t *filter_NewAudioBuffer( filter_t *p_filter, int i_size )
147 block_t *p_block = p_filter->pf_audio_buffer_new( p_filter, i_size );
148 if( !p_block )
149 msg_Warn( p_filter, "can't get output block" );
150 return p_block;
155 * Create a picture_t *(*)( filter_t *, picture_t * ) compatible wrapper
156 * using a void (*)( filter_t *, picture_t *, picture_t * ) function
158 * Currently used by the chroma video filters
160 #define VIDEO_FILTER_WRAPPER( name ) \
161 static picture_t *name ## _Filter ( filter_t *p_filter, \
162 picture_t *p_pic ) \
164 picture_t *p_outpic = filter_NewPicture( p_filter ); \
165 if( !p_outpic ) \
167 picture_Release( p_pic ); \
168 return NULL; \
171 name( p_filter, p_pic, p_outpic ); \
173 picture_CopyProperties( p_outpic, p_pic ); \
174 picture_Release( p_pic ); \
176 return p_outpic; \
180 * Filter chain management API
183 typedef struct filter_chain_t filter_chain_t;
185 VLC_EXPORT( filter_chain_t *, __filter_chain_New, ( vlc_object_t *, const char *, bool, int (*)( filter_t *, void * ), void (*)( filter_t * ), void * ) );
186 #define filter_chain_New( a, b, c, d, e, f ) __filter_chain_New( VLC_OBJECT( a ), b, c, d, e, f )
187 VLC_EXPORT( void, filter_chain_Delete, ( filter_chain_t * ) );
188 VLC_EXPORT( void, filter_chain_Reset, ( filter_chain_t *, const es_format_t *, const es_format_t * ) );
190 VLC_EXPORT( filter_t *, filter_chain_AppendFilter, ( filter_chain_t *, const char *, config_chain_t *, const es_format_t *, const es_format_t * ) );
191 VLC_EXPORT( int, filter_chain_AppendFromString, ( filter_chain_t *, const char * ) );
192 VLC_EXPORT( int, filter_chain_DeleteFilter, ( filter_chain_t *, filter_t * ) );
194 VLC_EXPORT( filter_t *, filter_chain_GetFilter, ( filter_chain_t *, int, const char * ) );
195 VLC_EXPORT( int, filter_chain_GetLength, ( filter_chain_t * ) );
196 VLC_EXPORT( const es_format_t *, filter_chain_GetFmtOut, ( filter_chain_t * ) );
199 * Apply the filter chain
201 VLC_EXPORT( picture_t *, filter_chain_VideoFilter, ( filter_chain_t *, picture_t * ) );
202 VLC_EXPORT( block_t *, filter_chain_AudioFilter, ( filter_chain_t *, block_t * ) );
203 VLC_EXPORT( void, filter_chain_SubFilter, ( filter_chain_t *, mtime_t ) );
205 #endif /* _VLC_FILTER_H */