Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
44c6d792
Commit
44c6d792
authored
May 21, 2014
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
meta_fetcher: rename as scope and set values
parent
66a61feb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
include/vlc_input_item.h
include/vlc_input_item.h
+4
-4
include/vlc_meta_fetcher.h
include/vlc_meta_fetcher.h
+3
-3
modules/gui/qt4/input_manager.cpp
modules/gui/qt4/input_manager.cpp
+1
-1
No files found.
include/vlc_input_item.h
View file @
44c6d792
...
...
@@ -293,10 +293,10 @@ VLC_API void input_item_Release(input_item_t *);
typedef
enum
input_item_meta_request_option_t
{
META_REQUEST_OPTION_NONE
=
0
,
META_REQUEST_OPTION_
LOCAL
=
1
<<
0
,
META_REQUEST_OPTION_
NETWORK
=
1
<<
1
,
META_REQUEST_OPTION_
ANY
=
1
<<
2
META_REQUEST_OPTION_NONE
=
0x0
0
,
META_REQUEST_OPTION_
SCOPE_LOCAL
=
0x01
,
META_REQUEST_OPTION_
SCOPE_NETWORK
=
0x02
,
META_REQUEST_OPTION_
SCOPE_ANY
=
0x03
}
input_item_meta_request_option_t
;
VLC_API
int
libvlc_MetaRequest
(
libvlc_int_t
*
,
input_item_t
*
,
...
...
include/vlc_meta_fetcher.h
View file @
44c6d792
...
...
@@ -23,9 +23,9 @@
typedef
enum
meta_fetcher_scope_t
{
FETCHER_SCOPE_LOCAL
,
FETCHER_SCOPE_NETWORK
,
FETCHER_SCOPE_ANY
FETCHER_SCOPE_LOCAL
=
0x01
,
FETCHER_SCOPE_NETWORK
=
0x02
,
FETCHER_SCOPE_ANY
=
0x03
}
meta_fetcher_scope_t
;
typedef
struct
meta_fetcher_t
...
...
modules/gui/qt4/input_manager.cpp
View file @
44c6d792
...
...
@@ -684,7 +684,7 @@ void InputManager::requestArtUpdate( input_item_t *p_item, bool b_forced )
return
;
}
libvlc_ArtRequest
(
p_intf
->
p_libvlc
,
p_item
,
(
b_forced
)
?
META_REQUEST_OPTION_ANY
(
b_forced
)
?
META_REQUEST_OPTION_
SCOPE_
ANY
:
META_REQUEST_OPTION_NONE
);
/* No input will signal the cover art to update,
* let's do it ourself */
...
...
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