mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 01:38:59 +08:00
59 lines
1.5 KiB
Diff
59 lines
1.5 KiB
Diff
diff --git a/librtmp/rtmp.c b/librtmp/rtmp.c
|
|
index 5ef3ae9..7c6a010 100644
|
|
--- a/librtmp/rtmp.c
|
|
+++ b/librtmp/rtmp.c
|
|
@@ -129,7 +129,7 @@ static int clk_tck;
|
|
uint32_t
|
|
RTMP_GetTime()
|
|
{
|
|
-#ifdef _DEBUG
|
|
+#if defined(_DEBUG) && !defined(LIBRTMP_ONLY)
|
|
return 0;
|
|
#elif defined(_WIN32)
|
|
return timeGetTime();
|
|
@@ -1256,7 +1256,7 @@ RTMP_ClientPacket(RTMP *r, RTMPPacket *packet)
|
|
return bHasMediaPacket;
|
|
}
|
|
|
|
-#ifdef _DEBUG
|
|
+#if defined(_DEBUG) && !defined(LIBRTMP_ONLY)
|
|
extern FILE *netstackdump;
|
|
extern FILE *netstackdump_read;
|
|
#endif
|
|
@@ -1333,7 +1333,7 @@ ReadN(RTMP *r, char *buffer, int n)
|
|
SendBytesReceived(r);
|
|
}
|
|
/*RTMP_Log(RTMP_LOGDEBUG, "%s: %d bytes\n", __FUNCTION__, nBytes); */
|
|
-#ifdef _DEBUG
|
|
+#if defined(_DEBUG) && !defined(LIBRTMP_ONLY)
|
|
fwrite(ptr, 1, nBytes, netstackdump_read);
|
|
#endif
|
|
|
|
@@ -3064,7 +3064,7 @@ HandShake(RTMP *r, int FP9HandShake)
|
|
|
|
memset(&clientsig[4], 0, 4);
|
|
|
|
-#ifdef _DEBUG
|
|
+#if defined(_DEBUG) && !defined(LIBRTMP_ONLY)
|
|
for (i = 8; i < RTMP_SIG_SIZE; i++)
|
|
clientsig[i] = 0xff;
|
|
#else
|
|
@@ -3136,7 +3136,7 @@ SHandShake(RTMP *r)
|
|
memcpy(serversig, &uptime, 4);
|
|
|
|
memset(&serversig[4], 0, 4);
|
|
-#ifdef _DEBUG
|
|
+#if defined(_DEBUG) && !defined(LIBRTMP_ONLY)
|
|
for (i = 8; i < RTMP_SIG_SIZE; i++)
|
|
serversig[i] = 0xff;
|
|
#else
|
|
@@ -3553,7 +3553,7 @@ RTMPSockBuf_Send(RTMPSockBuf *sb, const char *buf, int len)
|
|
{
|
|
int rc;
|
|
|
|
-#ifdef _DEBUG
|
|
+#if defined(_DEBUG) && !defined(LIBRTMP_ONLY)
|
|
fwrite(buf, 1, len, netstackdump);
|
|
#endif
|
|
|