2008-07-16 16:35:59 +08:00
|
|
|
//
|
2008-07-25 17:08:15 +08:00
|
|
|
// ZoneMinder Remote RTSP Camera Class Interface, $Date$, $Revision$
|
2008-07-25 17:33:23 +08:00
|
|
|
// Copyright (C) 2001-2008 Philip Coombes
|
2008-07-16 16:35:59 +08:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation; either version 2
|
|
|
|
// of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
2016-12-26 23:23:16 +08:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2008-07-16 16:35:59 +08:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef ZM_REMOTE_CAMERA_RTSP_H
|
|
|
|
#define ZM_REMOTE_CAMERA_RTSP_H
|
|
|
|
|
|
|
|
#include "zm_remote_camera.h"
|
|
|
|
|
|
|
|
#include "zm_buffer.h"
|
|
|
|
#include "zm_utils.h"
|
|
|
|
#include "zm_rtsp.h"
|
|
|
|
#include "zm_ffmpeg.h"
|
2015-08-31 19:52:16 +08:00
|
|
|
#include "zm_videostore.h"
|
2016-05-17 22:01:33 +08:00
|
|
|
#include "zm_packetqueue.h"
|
2008-07-16 16:35:59 +08:00
|
|
|
|
|
|
|
//
|
2014-01-28 08:52:46 +08:00
|
|
|
// Class representing 'rtsp' cameras, i.e. those which are
|
|
|
|
// accessed over a network connection using rtsp protocol
|
|
|
|
// (Real Time Streaming Protocol)
|
2008-07-16 16:35:59 +08:00
|
|
|
//
|
2017-11-13 00:42:34 +08:00
|
|
|
class RemoteCameraRtsp : public RemoteCamera {
|
2008-07-16 16:35:59 +08:00
|
|
|
protected:
|
2016-06-22 00:21:18 +08:00
|
|
|
struct sockaddr_in rtsp_sa;
|
|
|
|
struct sockaddr_in rtcp_sa;
|
|
|
|
int rtsp_sd;
|
|
|
|
int rtp_sd;
|
|
|
|
int rtcp_sd;
|
|
|
|
bool rtsp_describe;
|
2008-07-16 16:35:59 +08:00
|
|
|
|
2016-06-22 00:21:18 +08:00
|
|
|
Buffer buffer;
|
|
|
|
Buffer lastSps;
|
|
|
|
Buffer lastPps;
|
2008-07-16 16:35:59 +08:00
|
|
|
|
2016-06-22 00:21:18 +08:00
|
|
|
RtspThread::RtspMethod method;
|
2008-07-16 16:35:59 +08:00
|
|
|
|
2016-06-22 00:21:18 +08:00
|
|
|
RtspThread *rtspThread;
|
|
|
|
|
|
|
|
int frameCount;
|
2008-07-16 16:35:59 +08:00
|
|
|
|
2011-05-22 17:25:33 +08:00
|
|
|
#if HAVE_LIBAVFORMAT
|
2016-06-22 00:21:18 +08:00
|
|
|
AVFormatContext *mFormatContext;
|
|
|
|
AVCodecContext *mCodecContext;
|
|
|
|
AVCodec *mCodec;
|
|
|
|
_AVPIXELFORMAT imagePixFormat;
|
2011-05-22 17:25:33 +08:00
|
|
|
#endif // HAVE_LIBAVFORMAT
|
2008-07-16 16:35:59 +08:00
|
|
|
|
|
|
|
public:
|
2016-08-11 00:19:53 +08:00
|
|
|
RemoteCameraRtsp( unsigned int p_monitor_id, const std::string &method, const std::string &host, const std::string &port, const std::string &path, int p_width, int p_height, bool p_rtsp_describe, int p_colours, int p_brightness, int p_contrast, int p_hue, int p_colour, bool p_capture, bool p_record_audio );
|
2016-06-22 00:21:18 +08:00
|
|
|
~RemoteCameraRtsp();
|
2008-07-16 16:35:59 +08:00
|
|
|
|
2016-06-22 00:21:18 +08:00
|
|
|
void Initialise();
|
|
|
|
void Terminate();
|
|
|
|
int Connect();
|
|
|
|
int Disconnect();
|
2008-07-16 16:35:59 +08:00
|
|
|
|
2016-06-22 00:21:18 +08:00
|
|
|
int PrimeCapture();
|
|
|
|
int PreCapture();
|
2017-11-13 00:42:34 +08:00
|
|
|
int Capture( ZMPacket &p );
|
2016-06-22 00:21:18 +08:00
|
|
|
int PostCapture();
|
2018-04-17 22:02:52 +08:00
|
|
|
int Close() { return 0; };
|
2020-12-28 01:02:02 +08:00
|
|
|
AVStream *get_VideoStream() {
|
|
|
|
if ( mVideoStreamId != -1 )
|
|
|
|
return mFormatContext->streams[mVideoStreamId];
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
AVStream *get_AudioStream() {
|
|
|
|
if ( mAudioStreamId != -1 )
|
|
|
|
return mFormatContext->streams[mAudioStreamId];
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
AVCodecContext *get_VideoCodecContext() { return mVideoCodecContext; };
|
|
|
|
AVCodecContext *get_AudioCodecContext() { return mAudioCodecContext; };
|
2008-07-16 16:35:59 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ZM_REMOTE_CAMERA_RTSP_H
|