Commit c4c29a8b authored by Pierre Ynard's avatar Pierre Ynard

VAAPI: build fix

parent 40999732
...@@ -498,8 +498,9 @@ vlc_va_t *vlc_va_NewVaapi( vlc_object_t *obj, int i_codec_id ) ...@@ -498,8 +498,9 @@ vlc_va_t *vlc_va_NewVaapi( vlc_object_t *obj, int i_codec_id )
return &p_va->va; return &p_va->va;
} }
#else #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 ); VLC_UNUSED( i_codec_id );
return NULL; return NULL;
} }
......
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