From 3f23278d7911847d825b61e0cd2ad87425d91deb Mon Sep 17 00:00:00 2001
From: pans <pans@454eff88-639b-444f-9e54-f578c98de674>
Date: 星期五, 30 十二月 2016 13:43:16 +0800
Subject: [PATCH]
---
RtspFace/PL_RTSPClient.h | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/RtspFace/PL_RTSPClient.h b/RtspFace/PL_RTSPClient.h
index b5367fb..91fa685 100644
--- a/RtspFace/PL_RTSPClient.h
+++ b/RtspFace/PL_RTSPClient.h
@@ -8,13 +8,19 @@
{
std::string progName;
std::string rtspURL;
+ bool aux; // frame data start with 0x00000001
+ int verbosityLevel;
+ int tunnelOverHTTPPortNum; // portNumBits
+ void* args;
- RTSPConfig() : progName(), rtspURL() { }
+ RTSPConfig() :
+ progName(), rtspURL() ,aux(true), verbosityLevel(1), tunnelOverHTTPPortNum(0), args(nullptr)
+ { }
};
class PL_RTSPClient : public PipeLineElem
{
- friend void rtsp_client_frame_callback(void* arg, uint8_t* buffer, size_t buffSize);
+ friend void rtsp_client_frame_callback(void* arg, uint8_t* buffer, size_t buffSize, timeval presentationTime);
friend void rtsp_client_continue_callback(void* arg);
public:
--
Gitblit v1.8.0