Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN
medialibrary
Commits
1198930f
Commit
1198930f
authored
Jul 16, 2018
by
Hugo Beauzée-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MetadataParser: Log when a media has no detected tracks
parent
f977f507
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
src/metadata_services/MetadataParser.cpp
src/metadata_services/MetadataParser.cpp
+3
-0
No files found.
src/metadata_services/MetadataParser.cpp
View file @
1198930f
...
...
@@ -177,7 +177,10 @@ Status MetadataAnalyzer::run( IItem& item )
const
auto
&
tracks
=
item
.
tracks
();
if
(
tracks
.
empty
()
==
true
)
{
LOG_WARN
(
"Failed to analyze "
,
item
.
mrl
(),
": no tracks found"
);
return
Status
::
Fatal
;
}
bool
isAudio
=
true
;
{
...
...
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