Skip to content
Snippets Groups Projects
Commit c4c29a8b authored by Pierre Ynard's avatar Pierre Ynard
Browse files

VAAPI: build fix

parent 40999732
No related branches found
No related tags found
No related merge requests found
......@@ -498,8 +498,9 @@ vlc_va_t *vlc_va_NewVaapi( vlc_object_t *obj, int i_codec_id )
return &p_va->va;
}
#else
vlc_va_t *vlc_va_NewVaapi( int i_codec_id )
vlc_va_t *vlc_va_NewVaapi( vlc_object_t *obj, int i_codec_id )
{
VLC_UNUSED( obj );
VLC_UNUSED( i_codec_id );
return NULL;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment