Commit a294d6af authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

avcodec: remove dead code

parent fb1046c3
......@@ -534,11 +534,4 @@ vlc_va_t *vlc_va_NewVaapi( vlc_object_t *obj, int i_codec_id )
p_va->va.close = Delete;
return &p_va->va;
}
#else
vlc_va_t *vlc_va_NewVaapi( vlc_object_t *obj, int i_codec_id )
{
VLC_UNUSED( obj );
VLC_UNUSED( i_codec_id );
return NULL;
}
#endif
......@@ -269,14 +269,4 @@ vlc_va_t *vlc_va_NewVDA( vlc_object_t *p_log, int i_codec_id, void *p_extra, int
return &p_va->va;
}
#else
vlc_va_t *vlc_va_NewVDA( vlc_object_t *p_log, int i_codec_id, void *p_extra, int i_extra )
{
VLC_UNUSED( p_log );
VLC_UNUSED( i_codec_id );
VLC_UNUSED( p_extra );
VLC_UNUSED( i_extra );
return NULL;
}
#endif
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