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
599eee10
Commit
599eee10
authored
Jun 04, 2011
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
taglib: RIFF and WAV files are present since v1.6.0
parent
b4b357ee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
modules/meta_engine/taglib.cpp
modules/meta_engine/taglib.cpp
+4
-3
No files found.
modules/meta_engine/taglib.cpp
View file @
599eee10
...
...
@@ -69,7 +69,8 @@
#include <oggfile.h>
#include <oggflacfile.h>
#ifdef TAGLIB_WITH_ASF
#if TAGLIB_VERSION >= VERSION_INT(1,6,0)
# define TAGLIB_HAVE_RIFF_WAV_H
# include <aifffile.h>
# include <wavfile.h>
#endif
...
...
@@ -488,7 +489,7 @@ static int ReadMeta( vlc_object_t* p_this)
else
if
(
Ogg
::
Vorbis
::
File
*
ogg_vorbis
=
dynamic_cast
<
Ogg
::
Vorbis
::
File
*>
(
f
.
file
())
)
ReadMetaFromXiph
(
ogg_vorbis
->
tag
(),
p_demux_meta
,
p_meta
);
}
#ifdef TAGLIB_
WITH_ASF
#ifdef TAGLIB_
HAVE_RIFF_WAV_H
else
if
(
dynamic_cast
<
RIFF
::
File
*>
(
f
.
file
())
)
{
if
(
RIFF
::
AIFF
::
File
*
riff_aiff
=
dynamic_cast
<
RIFF
::
AIFF
::
File
*>
(
f
.
file
())
)
...
...
@@ -707,7 +708,7 @@ static int WriteMeta( vlc_object_t *p_this )
else
if
(
Ogg
::
Vorbis
::
File
*
ogg_vorbis
=
dynamic_cast
<
Ogg
::
Vorbis
::
File
*>
(
f
.
file
())
)
WriteMetaToXiph
(
ogg_vorbis
->
tag
(),
p_item
);
}
#ifdef TAGLIB_
WITH_ASF
#ifdef TAGLIB_
HAVE_RIFF_WAV_H
else
if
(
dynamic_cast
<
RIFF
::
File
*>
(
f
.
file
())
)
{
if
(
RIFF
::
AIFF
::
File
*
riff_aiff
=
dynamic_cast
<
RIFF
::
AIFF
::
File
*>
(
f
.
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