mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-15 00:00:07 +02:00
82 lines
2.0 KiB
Plaintext
82 lines
2.0 KiB
Plaintext
From c17c64630783c787faa155b5a266fbf384934c7d Mon Sep 17 00:00:00 2001
|
|
From: Adrien Destugues <pulkomandy@pulkomandy.tk>
|
|
Date: Sat, 13 Sep 2014 11:44:11 +0200
|
|
Subject: Strings.h fixes.
|
|
|
|
|
|
diff --git a/common/mp4v2/mp4.cpp b/common/mp4v2/mp4.cpp
|
|
index 42dc874..a8c9b4f 100644
|
|
--- a/common/mp4v2/mp4.cpp
|
|
+++ b/common/mp4v2/mp4.cpp
|
|
@@ -37,6 +37,7 @@
|
|
*/
|
|
|
|
#include "mp4common.h"
|
|
+#include <strings.h>
|
|
|
|
#define PRINT_ERROR(e) \
|
|
VERBOSE_ERROR(((MP4File*)hFile)->GetVerbosity(), e->Print());
|
|
diff --git a/common/mp4v2/mp4file.cpp b/common/mp4v2/mp4file.cpp
|
|
index aed2963..bfa7b35 100644
|
|
--- a/common/mp4v2/mp4file.cpp
|
|
+++ b/common/mp4v2/mp4file.cpp
|
|
@@ -29,6 +29,7 @@
|
|
*/
|
|
|
|
#include "mp4common.h"
|
|
+#include <strings.h>
|
|
|
|
MP4File::MP4File(u_int32_t verbosity)
|
|
{
|
|
diff --git a/common/mp4v2/mp4info.cpp b/common/mp4v2/mp4info.cpp
|
|
index c14cbab..06ceb79 100644
|
|
--- a/common/mp4v2/mp4info.cpp
|
|
+++ b/common/mp4v2/mp4info.cpp
|
|
@@ -26,6 +26,7 @@
|
|
*/
|
|
|
|
#include "mp4common.h"
|
|
+#include <strings.h>
|
|
|
|
static char* PrintAudioInfo(
|
|
MP4FileHandle mp4File,
|
|
diff --git a/common/mp4v2/mp4meta.cpp b/common/mp4v2/mp4meta.cpp
|
|
index 8d4c414..e5f88cf 100644
|
|
--- a/common/mp4v2/mp4meta.cpp
|
|
+++ b/common/mp4v2/mp4meta.cpp
|
|
@@ -61,6 +61,7 @@
|
|
**/
|
|
|
|
#include "mp4common.h"
|
|
+#include <strings.h>
|
|
|
|
bool MP4File::GetMetadataByIndex(u_int32_t index,
|
|
char** ppName,
|
|
diff --git a/common/mp4v2/mp4property.cpp b/common/mp4v2/mp4property.cpp
|
|
index a32b415..24958c3 100644
|
|
--- a/common/mp4v2/mp4property.cpp
|
|
+++ b/common/mp4v2/mp4property.cpp
|
|
@@ -20,6 +20,7 @@
|
|
*/
|
|
|
|
#include "mp4common.h"
|
|
+#include <strings.h>
|
|
|
|
MP4Property::MP4Property(const char* name)
|
|
{
|
|
diff --git a/common/mp4v2/mp4util.cpp b/common/mp4v2/mp4util.cpp
|
|
index 8fddff1..c3bfeed 100644
|
|
--- a/common/mp4v2/mp4util.cpp
|
|
+++ b/common/mp4v2/mp4util.cpp
|
|
@@ -21,6 +21,7 @@
|
|
*/
|
|
|
|
#include "mp4common.h"
|
|
+#include <strings.h>
|
|
|
|
static lib_message_func_t libfunc = NULL;
|
|
extern "C" void MP4SetLibFunc(lib_message_func_t libf)
|
|
--
|
|
1.8.3.4
|
|
|