Updated to include standard type definitions.

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@3088 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
stan 2010-07-04 18:09:44 +00:00
parent b079f1e1c6
commit 36dddf22cc
3 changed files with 4 additions and 1 deletions

View File

@ -63,7 +63,7 @@ bool RtpDataThread::recvPacket( const unsigned char *packet, size_t packetLen )
int RtpDataThread::run()
{
Debug( 2, "Starting data thread %ld on port %d", mRtpSource.getSsrc(), mRtpSource.getLocalDataPort() );
Debug( 2, "Starting data thread %d on port %d", mRtpSource.getSsrc(), mRtpSource.getLocalDataPort() );
SockAddrInet localAddr;
UdpInetServer rtpDataSocket;

View File

@ -23,6 +23,8 @@
#include "zm_thread.h"
#include "zm_buffer.h"
#include <stdint.h>
class RtspThread;
class RtpSource;

View File

@ -24,6 +24,7 @@
#include "zm_thread.h"
#include <sys/time.h>
#include <stdint.h>
#include <string>
struct RtpDataHeader;