Changeset 1369d55b16a19dc00d7b5ed0756ce847c0e904db
- 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
| r6c26107 |
r1369d55 |
|
| 68 | 68 | p_me = vlc_object_create( p_playlist, VLC_OBJECT_META_ENGINE ); |
|---|
| 69 | 69 | p_me->i_flags |= OBJECT_FLAGS_NOINTERACT; |
|---|
| | 70 | p_me->i_flags |= OBJECT_FLAGS_QUIET; |
|---|
| 70 | 71 | p_me->i_mandatory = i_mandatory; |
|---|
| 71 | 72 | p_me->i_optional = i_optional; |
|---|
| … | … | |
| 73 | 74 | p_me->p_item = p_item; |
|---|
| 74 | 75 | p_me->p_module = module_Need( p_me, "meta fetcher", 0, VLC_FALSE ); |
|---|
| 75 | | vlc_object_attach( p_me, p_playlist ); |
|---|
| 76 | 76 | if( !p_me->p_module ) |
|---|
| 77 | 77 | { |
|---|
| 78 | | msg_Dbg( p_playlist, "unable to fetch meta" ); |
|---|
| 79 | | vlc_object_detach( p_me ); |
|---|
| 80 | 78 | vlc_object_destroy( p_me ); |
|---|
| 81 | 79 | return VLC_EGENERIC; |
|---|
| … | … | |
| 83 | 81 | |
|---|
| 84 | 82 | module_Unneed( p_me, p_me->p_module ); |
|---|
| 85 | | |
|---|
| 86 | | vlc_object_detach( p_me ); |
|---|
| 87 | 83 | vlc_object_destroy( p_me ); |
|---|
| 88 | 84 | |
|---|