Commit 2dcb9d9a authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Rationalize filter_t (save 8 pointers)

parent 82b9112d
...@@ -60,46 +60,49 @@ struct filter_t ...@@ -60,46 +60,49 @@ struct filter_t
/* Filter configuration */ /* Filter configuration */
config_chain_t * p_cfg; config_chain_t * p_cfg;
picture_t * ( * pf_video_filter ) ( filter_t *, picture_t * ); union
block_t * ( * pf_audio_filter ) ( filter_t *, block_t * ); {
void ( * pf_video_blend ) ( filter_t *, picture_t * (*pf_video_filter) ( filter_t *, picture_t * );
picture_t *, const picture_t *, block_t * (*pf_audio_filter) ( filter_t *, block_t * );
int, int, int ); void (*pf_video_blend) ( filter_t *,
picture_t *, const picture_t *,
subpicture_t * ( *pf_sub_filter ) ( filter_t *, mtime_t ); int, int, int );
int ( *pf_render_text ) ( filter_t *, subpicture_region_t *,
subpicture_region_t * ); subpicture_t * (*pf_sub_filter) ( filter_t *, mtime_t );
int ( *pf_render_html ) ( filter_t *, subpicture_region_t *, int (*pf_render_text) ( filter_t *, subpicture_region_t *,
subpicture_region_t * ); subpicture_region_t * );
};
/* Filter mouse state. union
* {
* If non NULL, you must convert from output format to input format, /* Filter mouse state.
* if VLC_SUCCESS is returned, the mouse state is then propagated. *
* If NULL, the mouse state is considered unchanged and will be * If non-NULL, you must convert from output format to input format:
* propagated. * - If VLC_SUCCESS is returned, the mouse state is then propagated.
* * - Otherwise, the mouse change is not propagated.
* If VLC_SUCCESS is not returned, the mouse changes are not propagated. * If NULL, the mouse state is considered unchanged and will be
*/ * propagated.
int ( *pf_mouse )( filter_t *, vlc_mouse_t *, */
const vlc_mouse_t *p_old, int (*pf_mouse)( filter_t *, vlc_mouse_t *,
const vlc_mouse_t *p_new ); const vlc_mouse_t *p_old,
const vlc_mouse_t *p_new );
int (*pf_render_html) ( filter_t *, subpicture_region_t *,
subpicture_region_t * );
};
/* /*
* Buffers allocation * Buffers allocation
*/ */
union
/* Audio output callbacks */ {
block_t * ( * pf_audio_buffer_new) ( filter_t *, int ); block_t * (*pf_audio_buffer_new) ( filter_t *, int );
picture_t * (*pf_vout_buffer_new) ( filter_t * );
/* Video output callbacks */ subpicture_t * (*pf_sub_buffer_new) ( filter_t * );
picture_t * ( * pf_vout_buffer_new) ( filter_t * ); };
void ( * pf_vout_buffer_del) ( filter_t *, picture_t * ); union
/* void ( * pf_picture_link) ( picture_t * ); {
void ( * pf_picture_unlink) ( picture_t * ); */ void (*pf_vout_buffer_del) ( filter_t *, picture_t * );
void (*pf_sub_buffer_del) ( filter_t *, subpicture_t * );
/* SPU output callbacks */ };
subpicture_t * ( * pf_sub_buffer_new) ( filter_t * );
void ( * pf_sub_buffer_del) ( filter_t *, subpicture_t * );
/* Private structure for the owner of the decoder */ /* Private structure for the owner of the decoder */
filter_owner_sys_t *p_owner; filter_owner_sys_t *p_owner;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment