Fixed type in RTP method checking
git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@2615 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
parent
d6fc2d0cd5
commit
24ec7eed9e
|
@ -38,7 +38,7 @@ RemoteCameraRtsp::RemoteCameraRtsp( int p_id, const std::string &p_method, const
|
||||||
method = RtspThread::RTP_MULTICAST;
|
method = RtspThread::RTP_MULTICAST;
|
||||||
else if ( p_method == "rtpRtsp" )
|
else if ( p_method == "rtpRtsp" )
|
||||||
method = RtspThread::RTP_RTSP;
|
method = RtspThread::RTP_RTSP;
|
||||||
else if ( p_method == "rtRtspHttp" )
|
else if ( p_method == "rtpRtspHttp" )
|
||||||
method = RtspThread::RTP_RTSP_HTTP;
|
method = RtspThread::RTP_RTSP_HTTP;
|
||||||
else
|
else
|
||||||
Fatal( "Unrecognised method '%s' when creating RTSP camera %d", p_method.c_str(), id );
|
Fatal( "Unrecognised method '%s' when creating RTSP camera %d", p_method.c_str(), id );
|
||||||
|
|
Loading…
Reference in New Issue