X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_filter.h;h=1396008e6872d50acd5f77ae5679258f1ba3de81;hb=09a086878ea5f58d2bce2b35291ad5113a45b000;hp=6dbb2f117ca115564918b3e12b8c530aa7516617;hpb=74e5a0727b83ea8bd5ee87dbce7596b990ef14c1;p=vlc diff --git a/include/vlc_filter.h b/include/vlc_filter.h index 6dbb2f117c..1396008e68 100644 --- a/include/vlc_filter.h +++ b/include/vlc_filter.h @@ -28,6 +28,7 @@ #include #include #include +#include /** * \file @@ -62,7 +63,7 @@ struct filter_t picture_t * ( * pf_video_filter ) ( filter_t *, picture_t * ); block_t * ( * pf_audio_filter ) ( filter_t *, block_t * ); void ( * pf_video_blend ) ( filter_t *, - picture_t *, picture_t *, + picture_t *, const picture_t *, int, int, int ); subpicture_t * ( *pf_sub_filter ) ( filter_t *, mtime_t ); @@ -71,6 +72,18 @@ struct filter_t int ( *pf_render_html ) ( filter_t *, subpicture_region_t *, subpicture_region_t * ); + /* Filter mouse state. + * + * If non NULL, you must convert from output format to input format, + * if VLC_SUCCESS is returned, the mouse state is then propagated. + * If NULL, the mouse state is considered unchanged and will be + * propagated. + * + * If VLC_SUCCESS is not returned, the mouse changes are not propagated. + */ + int ( *pf_mouse )( filter_t *, vlc_mouse_t *, + const vlc_mouse_t *p_old, + const vlc_mouse_t *p_new ); /* * Buffers allocation */ @@ -312,5 +325,15 @@ VLC_EXPORT( block_t *, filter_chain_AudioFilter, ( filter_chain_t *, block_t * ) */ VLC_EXPORT( void, filter_chain_SubFilter, ( filter_chain_t *, mtime_t ) ); +/** + * Apply the filter chain to a mouse state. + * + * It will be applied from the output to the input. It makes sense only + * for a video filter chain. + * + * The vlc_mouse_t* pointers may be the same. + */ +VLC_EXPORT( int, filter_chain_MouseFilter, ( filter_chain_t *, vlc_mouse_t *, const vlc_mouse_t * ) ); + #endif /* _VLC_FILTER_H */