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
d1093a8d
Commit
d1093a8d
authored
Feb 12, 2007
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes album art local discovery and preparsing for directory:// subitems (refs [18129])
parent
7d22f489
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
modules/meta_engine/folder.c
modules/meta_engine/folder.c
+3
-0
src/input/input.c
src/input/input.c
+2
-0
No files found.
modules/meta_engine/folder.c
View file @
d1093a8d
...
...
@@ -84,6 +84,9 @@ static int FindMeta( vlc_object_t *p_this )
*
psz_dir
=
'\0'
;
}
if
(
!
strncmp
(
psz_dir
,
"file://"
,
7
)
)
psz_dir
+=
7
;
for
(
i
=
0
;
b_have_art
==
VLC_FALSE
&&
i
<
3
;
i
++
)
{
switch
(
i
)
...
...
src/input/input.c
View file @
d1093a8d
...
...
@@ -1995,6 +1995,8 @@ static int InputSourceInit( input_thread_t *p_input,
else
{
psz_path
=
psz_dup
;
if
(
!
strncmp
(
psz_path
,
"file://"
,
7
)
)
psz_path
+=
7
;
msg_Dbg
(
p_input
,
"trying to pre-parse %s"
,
psz_path
);
psz_demux
=
""
;
psz_access
=
"file"
;
...
...
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