2003-03-26 19:57:29 +08:00
|
|
|
//
|
|
|
|
// ZoneMinder Camera Class Implementation, $Date$, $Revision$
|
2008-07-25 17:33:23 +08:00
|
|
|
// Copyright (C) 2001-2008 Philip Coombes
|
2018-05-07 22:27:06 +08:00
|
|
|
//
|
2003-03-26 19:57:29 +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.
|
2018-05-07 22:27:06 +08:00
|
|
|
//
|
2003-03-26 19:57:29 +08:00
|
|
|
// 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.
|
2018-05-07 22:27:06 +08:00
|
|
|
//
|
2003-03-26 19:57:29 +08:00
|
|
|
// 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.
|
2018-05-07 22:27:06 +08:00
|
|
|
//
|
2003-03-26 19:57:29 +08:00
|
|
|
|
|
|
|
#include "zm_camera.h"
|
|
|
|
|
2021-02-04 11:47:28 +08:00
|
|
|
#include "zm_monitor.h"
|
|
|
|
|
2018-05-07 22:27:06 +08:00
|
|
|
Camera::Camera(
|
2021-02-08 02:12:39 +08:00
|
|
|
const Monitor *monitor,
|
2018-05-07 22:27:06 +08:00
|
|
|
SourceType p_type,
|
|
|
|
unsigned int p_width,
|
|
|
|
unsigned int p_height,
|
|
|
|
int p_colours,
|
|
|
|
int p_subpixelorder,
|
|
|
|
int p_brightness,
|
|
|
|
int p_contrast,
|
|
|
|
int p_hue,
|
|
|
|
int p_colour,
|
|
|
|
bool p_capture,
|
|
|
|
bool p_record_audio
|
|
|
|
) :
|
2021-02-08 02:12:39 +08:00
|
|
|
monitor(monitor),
|
2018-05-07 22:27:06 +08:00
|
|
|
type(p_type),
|
|
|
|
width(p_width),
|
|
|
|
height(p_height),
|
|
|
|
colours(p_colours),
|
2018-05-11 05:51:38 +08:00
|
|
|
subpixelorder(p_subpixelorder),
|
2018-05-07 22:27:06 +08:00
|
|
|
brightness(p_brightness),
|
|
|
|
hue(p_hue),
|
|
|
|
colour(p_colour),
|
|
|
|
contrast(p_contrast),
|
|
|
|
capture(p_capture),
|
|
|
|
record_audio(p_record_audio),
|
2017-11-21 00:48:56 +08:00
|
|
|
mVideoStreamId(-1),
|
|
|
|
mAudioStreamId(-1),
|
2021-01-20 02:43:25 +08:00
|
|
|
mVideoCodecContext(nullptr),
|
|
|
|
mAudioCodecContext(nullptr),
|
2021-01-28 23:45:19 +08:00
|
|
|
mVideoStream(nullptr),
|
|
|
|
mAudioStream(nullptr),
|
2021-01-28 05:12:32 +08:00
|
|
|
mFormatContext(nullptr),
|
2021-03-03 22:53:11 +08:00
|
|
|
mSecondFormatContext(nullptr),
|
2021-03-04 01:45:05 +08:00
|
|
|
mLastVideoPTS(0),
|
|
|
|
mLastAudioPTS(0),
|
2018-05-07 22:27:06 +08:00
|
|
|
bytes(0)
|
2003-03-26 19:57:29 +08:00
|
|
|
{
|
2020-07-06 05:51:57 +08:00
|
|
|
linesize = width * colours;
|
2016-06-22 00:21:18 +08:00
|
|
|
pixels = width * height;
|
2020-07-06 05:51:57 +08:00
|
|
|
imagesize = height * linesize;
|
2018-05-07 22:27:06 +08:00
|
|
|
|
2020-07-06 05:51:57 +08:00
|
|
|
Debug(2, "New camera id: %d width: %d line size: %d height: %d colours: %d subpixelorder: %d capture: %d",
|
2021-02-08 02:12:39 +08:00
|
|
|
monitor->Id(), width, linesize, height, colours, subpixelorder, capture);
|
2003-03-26 19:57:29 +08:00
|
|
|
}
|
|
|
|
|
2016-06-22 01:48:32 +08:00
|
|
|
Camera::~Camera() {
|
2021-01-28 05:12:32 +08:00
|
|
|
if ( mFormatContext ) {
|
|
|
|
// Should also free streams
|
|
|
|
avformat_free_context(mFormatContext);
|
|
|
|
}
|
2021-03-03 22:53:11 +08:00
|
|
|
if ( mSecondFormatContext ) {
|
|
|
|
// Should also free streams
|
|
|
|
avformat_free_context(mSecondFormatContext);
|
|
|
|
}
|
|
|
|
mVideoStream = nullptr;
|
|
|
|
mAudioStream = nullptr;
|
2003-03-26 19:57:29 +08:00
|
|
|
}
|
|
|
|
|
2021-03-04 01:06:34 +08:00
|
|
|
AVStream *Camera::getVideoStream() {
|
2021-01-28 23:45:19 +08:00
|
|
|
if ( !mVideoStream ) {
|
2021-01-28 05:12:32 +08:00
|
|
|
if ( !mFormatContext )
|
|
|
|
mFormatContext = avformat_alloc_context();
|
|
|
|
Debug(1, "Allocating avstream");
|
2021-01-28 23:45:19 +08:00
|
|
|
mVideoStream = avformat_new_stream(mFormatContext, nullptr);
|
|
|
|
if ( mVideoStream ) {
|
|
|
|
mVideoStream->time_base = (AVRational){1, 1000000}; // microseconds as base frame rate
|
2021-01-28 05:12:32 +08:00
|
|
|
#if LIBAVCODEC_VERSION_CHECK(57, 64, 0, 64, 0)
|
2021-01-28 23:45:19 +08:00
|
|
|
mVideoStream->codecpar->width = width;
|
|
|
|
mVideoStream->codecpar->height = height;
|
|
|
|
mVideoStream->codecpar->format = GetFFMPEGPixelFormat(colours, subpixelorder);
|
|
|
|
mVideoStream->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
|
|
|
|
mVideoStream->codecpar->codec_id = AV_CODEC_ID_NONE;
|
|
|
|
Debug(1, "Allocating avstream %p %p %d", mVideoStream, mVideoStream->codecpar, mVideoStream->codecpar->codec_id);
|
2021-01-28 05:12:32 +08:00
|
|
|
#else
|
2021-01-28 23:45:19 +08:00
|
|
|
mVideoStream->codec->width = width;
|
|
|
|
mVideoStream->codec->height = height;
|
|
|
|
mVideoStream->codec->pix_fmt = GetFFMPEGPixelFormat(colours, subpixelorder);
|
|
|
|
mVideoStream->codec->codec_type = AVMEDIA_TYPE_VIDEO;
|
|
|
|
mVideoStream->codec->codec_id = AV_CODEC_ID_NONE;
|
2021-01-28 05:12:32 +08:00
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
Error("Can't create video stream");
|
|
|
|
}
|
2021-02-04 23:28:17 +08:00
|
|
|
mVideoStreamId = mVideoStream->index;
|
2021-01-28 05:12:32 +08:00
|
|
|
}
|
2021-01-28 23:45:19 +08:00
|
|
|
return mVideoStream;
|
2021-01-28 05:12:32 +08:00
|
|
|
}
|