Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
846bb6fe
Commit
846bb6fe
authored
Feb 09, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
taglib: remove a dummy sub-module (taglib can't act as an "art downloader").
parent
5e567ccf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
15 deletions
+1
-15
modules/meta_engine/taglib.cpp
modules/meta_engine/taglib.cpp
+1
-15
No files found.
modules/meta_engine/taglib.cpp
View file @
846bb6fe
/*****************************************************************************
* taglib.cpp: Taglib tag parser/writer
*****************************************************************************
* Copyright (C) 2003-200
8
the VideoLAN team
* Copyright (C) 2003-200
9
the VideoLAN team
* $Id$
*
* Authors: Clément Stenac <zorglub@videolan.org>
...
...
@@ -68,15 +68,11 @@
// Local functions
static
int
ReadMeta
(
vlc_object_t
*
);
static
int
DownloadArt
(
vlc_object_t
*
);
static
int
WriteMeta
(
vlc_object_t
*
);
vlc_module_begin
()
set_capability
(
"meta reader"
,
1000
)
set_callbacks
(
ReadMeta
,
NULL
)
add_submodule
()
set_capability
(
"art downloader"
,
50
)
set_callbacks
(
DownloadArt
,
NULL
)
add_submodule
()
set_capability
(
"meta writer"
,
50
)
set_callbacks
(
WriteMeta
,
NULL
)
...
...
@@ -653,13 +649,3 @@ static int WriteMeta( vlc_object_t *p_this )
return
VLC_SUCCESS
;
}
static
int
DownloadArt
(
vlc_object_t
*
p_this
)
{
/* We need to be passed the file name
* Fetch the thing from the file, save it to the cache folder
*/
return
VLC_EGENERIC
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment