Commit 648a4893 authored by Francois Cartegnie's avatar Francois Cartegnie

fingerprinter: don't hardcode acoustid module selection

parent 78e989ef
...@@ -79,7 +79,7 @@ vlc_module_begin () ...@@ -79,7 +79,7 @@ vlc_module_begin ()
set_category(CAT_ADVANCED) set_category(CAT_ADVANCED)
set_shortname(N_("acoustid")) set_shortname(N_("acoustid"))
set_description(N_("Track fingerprinter (based on Acoustid)")) set_description(N_("Track fingerprinter (based on Acoustid)"))
set_capability("fingerprinter", 1) set_capability("fingerprinter", 10)
set_callbacks(Open, Close) set_callbacks(Open, Close)
vlc_module_end () vlc_module_end ()
......
...@@ -40,7 +40,7 @@ fingerprinter_thread_t *fingerprinter_Create( vlc_object_t *p_this ) ...@@ -40,7 +40,7 @@ fingerprinter_thread_t *fingerprinter_Create( vlc_object_t *p_this )
} }
p_fingerprint->p_module = module_need( p_fingerprint, "fingerprinter", p_fingerprint->p_module = module_need( p_fingerprint, "fingerprinter",
"acoustid", false ); NULL, false );
if( !p_fingerprint->p_module ) if( !p_fingerprint->p_module )
{ {
vlc_object_release( p_fingerprint ); vlc_object_release( p_fingerprint );
......
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