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
637db5ea
Commit
637db5ea
authored
Dec 13, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Taglib: better fix for year and track deletion
Ref #5686
parent
d12e755e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
modules/meta_engine/taglib.cpp
modules/meta_engine/taglib.cpp
+4
-2
No files found.
modules/meta_engine/taglib.cpp
View file @
637db5ea
...
...
@@ -874,11 +874,13 @@ static int WriteMeta( vlc_object_t *p_this )
#undef SET
psz_meta
=
input_item_GetDate
(
p_item
);
p_tag
->
setYear
(
atoi
(
psz_meta
)
);
if
(
!
EMPTY_STR
(
psz_meta
)
)
p_tag
->
setYear
(
atoi
(
psz_meta
)
);
else
p_tag
->
setYear
(
0
);
free
(
psz_meta
);
psz_meta
=
input_item_GetTrackNum
(
p_item
);
p_tag
->
setTrack
(
atoi
(
psz_meta
)
);
if
(
!
EMPTY_STR
(
psz_meta
)
)
p_tag
->
setTrack
(
atoi
(
psz_meta
)
);
else
p_tag
->
setTrack
(
0
);
free
(
psz_meta
);
...
...
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