]> git.sesse.net Git - vlc/blobdiff - modules/video_filter/blendbench.c
module_need wants pointers and boolean so give NULL and false instead of 0.
[vlc] / modules / video_filter / blendbench.c
index 2e7194c45dbb2bfd4c04227df1df75edd0de6f75..8495221d9ffb929e346cfba22d6098b28690b076 100644 (file)
@@ -228,7 +228,7 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
     vlc_object_attach( p_blend, p_filter );
     p_blend->fmt_out.video = p_sys->p_base_image->format;
     p_blend->fmt_in.video = p_sys->p_blend_image->format;
-    p_blend->p_module = module_need( p_blend, "video blending", 0, 0 );
+    p_blend->p_module = module_need( p_blend, "video blending", NULL, false );
     if( !p_blend->p_module )
     {
         picture_Release( p_pic );