We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d22794e commit af56180Copy full SHA for af56180
src/pause_click.c
@@ -154,7 +154,7 @@ vlc_module_begin()
154
// 6f68f894986e11e3f6215f6c2c25e5c0a3139429
155
// 94e23d51bb91cff1c14ef1079193920f04f48fd1
156
#if LIBVLC_VERSION_MAJOR >= 4
157
- set_callback_video_filter(OpenFilter)
+ set_callback_video_filter((vlc_filter_open) OpenFilter)
158
#else
159
set_category(CAT_VIDEO)
160
set_callbacks(OpenFilter, CloseFilter)
@@ -583,7 +583,7 @@ static const struct vlc_filter_operations filter_ops =
583
{
584
.filter_video = filter,
585
.video_mouse = _mouse,
586
- .close = CloseFilter,
+ .close = (void (*)(filter_t *)) CloseFilter,
587
};
588
#endif
589
0 commit comments