Fix some includes in taglib
This commit is contained in:
parent
5f71a558b9
commit
26586fb9ef
2
3rdparty/taglib/audioproperties.cpp
vendored
2
3rdparty/taglib/audioproperties.cpp
vendored
@ -23,7 +23,7 @@
|
||||
* http://www.mozilla.org/MPL/ *
|
||||
***************************************************************************/
|
||||
|
||||
#include <tstringlist.h>
|
||||
#include "tstringlist.h"
|
||||
|
||||
#include "audioproperties.h"
|
||||
|
||||
|
8
3rdparty/taglib/fileref.cpp
vendored
8
3rdparty/taglib/fileref.cpp
vendored
@ -29,10 +29,10 @@
|
||||
|
||||
#include <memory>
|
||||
|
||||
#include <tfile.h>
|
||||
#include <tfilestream.h>
|
||||
#include <tstring.h>
|
||||
#include <tdebug.h>
|
||||
#include "tfile.h"
|
||||
#include "tfilestream.h"
|
||||
#include "tstring.h"
|
||||
#include "tdebug.h"
|
||||
|
||||
#include "fileref.h"
|
||||
#include "asffile.h"
|
||||
|
2
3rdparty/taglib/ogg/flac/oggflacfile.cpp
vendored
2
3rdparty/taglib/ogg/flac/oggflacfile.cpp
vendored
@ -29,7 +29,7 @@
|
||||
#include "tpropertymap.h"
|
||||
#include "tagutils.h"
|
||||
|
||||
#include <xiphcomment.h>
|
||||
#include "xiphcomment.h"
|
||||
#include "oggflacfile.h"
|
||||
|
||||
using namespace Strawberry_TagLib::TagLib;
|
||||
|
2
3rdparty/taglib/ogg/opus/opusproperties.cpp
vendored
2
3rdparty/taglib/ogg/opus/opusproperties.cpp
vendored
@ -30,7 +30,7 @@
|
||||
#include "tstring.h"
|
||||
#include "tdebug.h"
|
||||
|
||||
#include <oggpageheader.h>
|
||||
#include "oggpageheader.h"
|
||||
|
||||
#include "opusproperties.h"
|
||||
#include "opusfile.h"
|
||||
|
4
3rdparty/taglib/ogg/xiphcomment.cpp
vendored
4
3rdparty/taglib/ogg/xiphcomment.cpp
vendored
@ -23,8 +23,8 @@
|
||||
* http://www.mozilla.org/MPL/ *
|
||||
***************************************************************************/
|
||||
|
||||
#include <tbytevector.h>
|
||||
#include <tdebug.h>
|
||||
#include "tbytevector.h"
|
||||
#include "tdebug.h"
|
||||
|
||||
#include "flacpicture.h"
|
||||
#include "xiphcomment.h"
|
||||
|
8
3rdparty/taglib/tagunion.cpp
vendored
8
3rdparty/taglib/tagunion.cpp
vendored
@ -25,10 +25,10 @@
|
||||
|
||||
#include <memory>
|
||||
|
||||
#include <tagunion.h>
|
||||
#include <tstringlist.h>
|
||||
#include <tpropertymap.h>
|
||||
#include <tpicturemap.h>
|
||||
#include "tagunion.h"
|
||||
#include "tstringlist.h"
|
||||
#include "tpropertymap.h"
|
||||
#include "tpicturemap.h"
|
||||
|
||||
#define stringUnion(method) \
|
||||
for (size_t j = 0; j < COUNT; ++j) { \
|
||||
|
2
3rdparty/taglib/tagutils.h
vendored
2
3rdparty/taglib/tagutils.h
vendored
@ -30,7 +30,7 @@
|
||||
|
||||
#ifndef DO_NOT_DOCUMENT // tell Doxygen not to document this header
|
||||
|
||||
# include <tbytevector.h>
|
||||
#include "tbytevector.h"
|
||||
|
||||
namespace Strawberry_TagLib {
|
||||
namespace TagLib {
|
||||
|
@ -26,6 +26,7 @@
|
||||
#include <cstdlib>
|
||||
#include <cstdio>
|
||||
#include <cstring>
|
||||
#include <cstddef>
|
||||
|
||||
#include "tbytevectorstream.h"
|
||||
#include "tstring.h"
|
||||
|
26
3rdparty/taglib/toolkit/tutils.h
vendored
26
3rdparty/taglib/toolkit/tutils.h
vendored
@ -32,20 +32,20 @@
|
||||
|
||||
#include "taglib-config.h"
|
||||
|
||||
# if defined(HAVE_MSC_BYTESWAP)
|
||||
# include <cstdlib>
|
||||
# elif defined(HAVE_GLIBC_BYTESWAP)
|
||||
# include <byteswap.h>
|
||||
# elif defined(HAVE_MAC_BYTESWAP)
|
||||
# include <libkern/OSByteOrder.h>
|
||||
# elif defined(HAVE_OPENBSD_BYTESWAP)
|
||||
# include <sys/endian.h>
|
||||
# endif
|
||||
#if defined(HAVE_MSC_BYTESWAP)
|
||||
# include <cstdlib>
|
||||
#elif defined(HAVE_GLIBC_BYTESWAP)
|
||||
# include <byteswap.h>
|
||||
#elif defined(HAVE_MAC_BYTESWAP)
|
||||
# include <libkern/OSByteOrder.h>
|
||||
#elif defined(HAVE_OPENBSD_BYTESWAP)
|
||||
# include <sys/endian.h>
|
||||
#endif
|
||||
|
||||
# include <tstring.h>
|
||||
# include <cstdio>
|
||||
# include <cstdarg>
|
||||
# include <cstring>
|
||||
#include "tstring.h"
|
||||
#include <cstdio>
|
||||
#include <cstdarg>
|
||||
#include <cstring>
|
||||
|
||||
namespace Strawberry_TagLib {
|
||||
namespace TagLib {
|
||||
|
2
3rdparty/taglib/toolkit/tzlib.h
vendored
2
3rdparty/taglib/toolkit/tzlib.h
vendored
@ -26,7 +26,7 @@
|
||||
#ifndef TAGLIB_TZLIB_H
|
||||
#define TAGLIB_TZLIB_H
|
||||
|
||||
#include <tbytevector.h>
|
||||
#include "tbytevector.h"
|
||||
|
||||
// THIS FILE IS NOT A PART OF THE TAGLIB API
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user