Commit 661efb2e authored by Rafaël Carré's avatar Rafaël Carré

Now using ITEM_PREPARSED & ITEM_META_FETCHED indicators

parent d42f92f2
...@@ -174,7 +174,6 @@ static int Open( vlc_object_t *p_this ) ...@@ -174,7 +174,6 @@ static int Open( vlc_object_t *p_this )
free( p_sys ); \ free( p_sys ); \
return VLC_ENOMEM; return VLC_ENOMEM;
if( !p_sys ) if( !p_sys )
{ {
MEM_ERROR MEM_ERROR
...@@ -1053,17 +1052,11 @@ static int ReadMetaData( intf_thread_t *p_this ) ...@@ -1053,17 +1052,11 @@ static int ReadMetaData( intf_thread_t *p_this )
i_status = input_GetItem(p_input)->p_meta->i_status; i_status = input_GetItem(p_input)->p_meta->i_status;
b_waiting = VLC_TRUE;
/* TODO: meta data fetching doesn't work atm
vlc_mutex_lock( &p_sys->lock ); vlc_mutex_lock( &p_sys->lock );
b_waiting = p_sys->b_waiting_meta; b_waiting = p_sys->b_waiting_meta;
vlc_mutex_unlock( &p_sys->lock ); vlc_mutex_unlock( &p_sys->lock );
*/
/* TODO: item preparsing is buggy on drag&drop and command line arguments
if( i_status & ( !b_waiting ? ITEM_PREPARSED : ITEM_META_FETCHED ) ) if( i_status & ( !b_waiting ? ITEM_PREPARSED : ITEM_META_FETCHED ) )
*/
if( 1 )
{ {
ALLOC_ITEM_META( psz_artist, p_meta->psz_artist ) ALLOC_ITEM_META( psz_artist, p_meta->psz_artist )
else else
......
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