修正posix系统下编译失败的bug
This commit is contained in:
parent
d1a271c09d
commit
0d03ae6cd2
|
|
@ -8,9 +8,10 @@
|
|||
#include "Common/config.h"
|
||||
#include "RtpMakerAAC.h"
|
||||
#include "Util/mini.h"
|
||||
#include "Network/sockutil.h"
|
||||
|
||||
using namespace ZL::Util;
|
||||
|
||||
using namespace ZL::Network;
|
||||
|
||||
namespace ZL {
|
||||
namespace Rtsp {
|
||||
|
|
|
|||
|
|
@ -8,8 +8,10 @@
|
|||
#include "Common/config.h"
|
||||
#include "RtpMakerH264.h"
|
||||
#include "Util/mini.h"
|
||||
#include "Network/sockutil.h"
|
||||
|
||||
using namespace ZL::Util;
|
||||
using namespace ZL::Network;
|
||||
|
||||
namespace ZL {
|
||||
namespace Rtsp {
|
||||
|
|
|
|||
|
|
@ -2,10 +2,12 @@
|
|||
#include <stdexcept>
|
||||
#include "amf.h"
|
||||
#include "utils.h"
|
||||
#include "Util/logger.h"
|
||||
#include "Util/util.h"
|
||||
#include "Util/logger.h"
|
||||
#include "Network/sockutil.h"
|
||||
|
||||
using namespace ZL::Util;
|
||||
using namespace ZL::Network;
|
||||
|
||||
/////////////////////AMFValue/////////////////////////////
|
||||
inline void AMFValue::destroy() {
|
||||
|
|
|
|||
|
|
@ -4,8 +4,10 @@
|
|||
#include <stdlib.h>
|
||||
#include <stdarg.h>
|
||||
#include "Util/util.h"
|
||||
#include "Network/sockutil.h"
|
||||
|
||||
using namespace ZL::Util;
|
||||
using namespace ZL::Network;
|
||||
|
||||
/*
|
||||
* Used to do unaligned loads on archs that don't support them. GCC can mostly
|
||||
|
|
|
|||
Loading…
Reference in New Issue