Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
ba13ac0c
Commit
ba13ac0c
authored
May 13, 2014
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rename art_finder as meta_fetcher
parent
058b871e
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
19 additions
and
18 deletions
+19
-18
include/vlc_meta_fetcher.h
include/vlc_meta_fetcher.h
+5
-5
m4/intl.m4
m4/intl.m4
+2
-1
modules/lua/meta.c
modules/lua/meta.c
+3
-3
modules/lua/vlc.h
modules/lua/vlc.h
+3
-3
modules/meta_engine/folder.c
modules/meta_engine/folder.c
+2
-2
src/Makefile.am
src/Makefile.am
+1
-1
src/playlist/fetcher.c
src/playlist/fetcher.c
+3
-3
No files found.
include/vlc_
art_find
er.h
→
include/vlc_
meta_fetch
er.h
View file @
ba13ac0c
/*****************************************************************************
* vlc_
art_find
er.h
* vlc_
meta_fetch
er.h
*****************************************************************************
* Copyright (C) 2009 Rémi Denis-Courmont
*
...
...
@@ -18,8 +18,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef VLC_
ART_FIND
ER_H
#define VLC_
ART_FIND
ER_H 1
#ifndef VLC_
META_FETCH
ER_H
#define VLC_
META_FETCH
ER_H 1
typedef
enum
meta_fetcher_scope_t
{
...
...
@@ -28,11 +28,11 @@ typedef enum meta_fetcher_scope_t
FETCHER_SCOPE_ANY
}
meta_fetcher_scope_t
;
typedef
struct
art_find
er_t
typedef
struct
meta_fetch
er_t
{
VLC_COMMON_MEMBERS
input_item_t
*
p_item
;
meta_fetcher_scope_t
e_scope
;
}
art_find
er_t
;
}
meta_fetch
er_t
;
#endif
m4/intl.m4
View file @
ba13ac0c
# intl.m4 serial 2
4
(gettext-0.18.3)
# intl.m4 serial 2
5
(gettext-0.18.3)
dnl Copyright (C) 1995-2013 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
...
...
@@ -42,6 +42,7 @@ AC_DEFUN([AM_INTL_SUBDIR],
AC_REQUIRE([gl_XSIZE])dnl
AC_REQUIRE([gl_FCNTL_O_FLAGS])dnl
AC_REQUIRE([gt_INTL_MACOSX])dnl
AC_REQUIRE([gl_EXTERN_INLINE])dnl
dnl Support for automake's --enable-silent-rules.
case "$enable_silent_rules" in
...
...
modules/lua/meta.c
View file @
ba13ac0c
...
...
@@ -37,7 +37,7 @@
#include <vlc_input.h>
#include <vlc_meta.h>
#include <vlc_demux.h>
#include <vlc_
art_find
er.h>
#include <vlc_
meta_fetch
er.h>
#include <vlc_url.h>
#include <vlc_strings.h>
#include <vlc_stream.h>
...
...
@@ -259,7 +259,7 @@ int ReadMeta( demux_meta_t *p_this )
* Read meta.
*****************************************************************************/
int
FetchMeta
(
art_find
er_t
*
p_finder
)
int
FetchMeta
(
meta_fetch
er_t
*
p_finder
)
{
luabatch_context_t
context
=
{
p_finder
->
p_item
,
p_finder
->
e_scope
,
validate_scope
};
...
...
@@ -271,7 +271,7 @@ int FetchMeta( art_finder_t *p_finder )
/*****************************************************************************
* Module entry point for art.
*****************************************************************************/
int
FindArt
(
art_find
er_t
*
p_finder
)
int
FindArt
(
meta_fetch
er_t
*
p_finder
)
{
luabatch_context_t
context
=
{
p_finder
->
p_item
,
p_finder
->
e_scope
,
validate_scope
};
...
...
modules/lua/vlc.h
View file @
ba13ac0c
...
...
@@ -32,7 +32,7 @@
#include <vlc_input.h>
#include <vlc_playlist.h>
#include <vlc_meta.h>
#include <vlc_
art_find
er.h>
#include <vlc_
meta_fetch
er.h>
#include <vlc_url.h>
#include <vlc_strings.h>
#include <vlc_stream.h>
...
...
@@ -52,8 +52,8 @@
* Module entry points
*****************************************************************************/
int
ReadMeta
(
demux_meta_t
*
);
int
FetchMeta
(
art_find
er_t
*
);
int
FindArt
(
art_find
er_t
*
);
int
FetchMeta
(
meta_fetch
er_t
*
);
int
FindArt
(
meta_fetch
er_t
*
);
int
Import_LuaPlaylist
(
vlc_object_t
*
);
void
Close_LuaPlaylist
(
vlc_object_t
*
);
...
...
modules/meta_engine/folder.c
View file @
ba13ac0c
...
...
@@ -33,7 +33,7 @@
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_
art_find
er.h>
#include <vlc_
meta_fetch
er.h>
#include <vlc_fs.h>
#include <vlc_url.h>
#include <vlc_input_item.h>
...
...
@@ -72,7 +72,7 @@ vlc_module_end ()
*****************************************************************************/
static
int
FindMeta
(
vlc_object_t
*
p_this
)
{
art_finder_t
*
p_finder
=
(
art_find
er_t
*
)
p_this
;
meta_fetcher_t
*
p_finder
=
(
meta_fetch
er_t
*
)
p_this
;
input_item_t
*
p_item
=
p_finder
->
p_item
;
bool
b_have_art
=
false
;
struct
stat
statinfo
;
...
...
src/Makefile.am
View file @
ba13ac0c
...
...
@@ -27,7 +27,6 @@ pluginsinclude_HEADERS = \
../include/vlc_aout.h
\
../include/vlc_aout_volume.h
\
../include/vlc_arrays.h
\
../include/vlc_art_finder.h
\
../include/vlc_atomic.h
\
../include/vlc_avcodec.h
\
../include/vlc_bits.h
\
...
...
@@ -62,6 +61,7 @@ pluginsinclude_HEADERS = \
../include/vlc_md5.h
\
../include/vlc_messages.h
\
../include/vlc_meta.h
\
../include/vlc_meta_fetcher.h
\
../include/vlc_media_library.h
\
../include/vlc_mime.h
\
../include/vlc_modules.h
\
...
...
src/playlist/fetcher.c
View file @
ba13ac0c
...
...
@@ -30,7 +30,7 @@
#include <vlc_common.h>
#include <vlc_stream.h>
#include <vlc_
art_find
er.h>
#include <vlc_
meta_fetch
er.h>
#include <vlc_memory.h>
#include <vlc_demux.h>
#include <vlc_modules.h>
...
...
@@ -225,7 +225,7 @@ static int FindArt( playlist_fetcher_t *p_fetcher, input_item_t *p_item )
i_ret
=
VLC_EGENERIC
;
vlc_object_t
*
p_parent
=
p_fetcher
->
object
;
art_find
er_t
*
p_finder
=
meta_fetch
er_t
*
p_finder
=
vlc_custom_create
(
p_parent
,
sizeof
(
*
p_finder
),
"art finder"
);
if
(
p_finder
!=
NULL
)
{
...
...
@@ -341,7 +341,7 @@ error:
*/
static
void
FetchMeta
(
playlist_fetcher_t
*
p_fetcher
,
input_item_t
*
p_item
)
{
art_find
er_t
*
p_finder
=
meta_fetch
er_t
*
p_finder
=
vlc_custom_create
(
p_fetcher
->
object
,
sizeof
(
*
p_finder
),
"art finder"
);
if
(
!
p_finder
)
return
;
...
...
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