Changeset 1369d55b16a19dc00d7b5ed0756ce847c0e904db

Show
Ignore:
Timestamp:
08/10/06 01:37:33 (2 years ago)
Author:
Gildas Bazin <gbazin@videolan.org>
git-committer:
Gildas Bazin <gbazin@videolan.org> 1160264253 +0000
git-parent:

[318e9b862b1792bee23521a459ca44ef1e40f7ed]

git-author:
Gildas Bazin <gbazin@videolan.org> 1160264253 +0000
Message:

* src/input/meta.c: stop the spamming of the meta engine.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/input/meta.c

    r6c26107 r1369d55  
    6868    p_me = vlc_object_create( p_playlist, VLC_OBJECT_META_ENGINE ); 
    6969    p_me->i_flags |= OBJECT_FLAGS_NOINTERACT; 
     70    p_me->i_flags |= OBJECT_FLAGS_QUIET; 
    7071    p_me->i_mandatory = i_mandatory; 
    7172    p_me->i_optional = i_optional; 
     
    7374    p_me->p_item = p_item; 
    7475    p_me->p_module = module_Need( p_me, "meta fetcher", 0, VLC_FALSE ); 
    75     vlc_object_attach( p_me, p_playlist ); 
    7676    if( !p_me->p_module ) 
    7777    { 
    78         msg_Dbg( p_playlist, "unable to fetch meta" ); 
    79         vlc_object_detach( p_me ); 
    8078        vlc_object_destroy( p_me ); 
    8179        return VLC_EGENERIC; 
     
    8381 
    8482    module_Unneed( p_me, p_me->p_module ); 
    85  
    86     vlc_object_detach( p_me ); 
    8783    vlc_object_destroy( p_me ); 
    8884