Changeset 387c26ca7f38dcf9349d99694c02f10d9b9a9968
- Timestamp:
- 28/10/06 16:43:51
(2 years ago)
- Author:
- Sigmund Augdal Helberg <sigmunau@videolan.org>
- git-committer:
- Sigmund Augdal Helberg <sigmunau@videolan.org> 1162046631 +0000
- git-parent:
[027fcc8a5cd0f6a5be67d7f6f96f50f0975be924]
- git-author:
- Sigmund Augdal Helberg <sigmunau@videolan.org> 1162046631 +0000
- Message:
taglib.cpp: Don't put empty info in playlist for files with no tag
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r408a016 |
r387c26c |
|
| 89 | 89 | p_demux->p_private = (void*)vlc_meta_New(); |
|---|
| 90 | 90 | TagLib::FileRef f( p_demux->psz_path ); |
|---|
| 91 | | if( !f.isNull() && f.tag() ) |
|---|
| | 91 | if( !f.isNull() && f.tag() && !f.tag()->isEmpty() ) |
|---|
| 92 | 92 | { |
|---|
| 93 | 93 | TagLib::Tag *tag = f.tag(); |
|---|