2005-10-18 05:55:02 +08:00
|
|
|
//
|
|
|
|
// ZoneMinder File Camera Class Interface, $Date$, $Revision$
|
2008-07-25 17:33:23 +08:00
|
|
|
// Copyright (C) 2001-2008 Philip Coombes
|
2005-10-18 05:55:02 +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.
|
2005-10-18 05:55:02 +08:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef ZM_FILE_CAMERA_H
|
|
|
|
#define ZM_FILE_CAMERA_H
|
|
|
|
|
|
|
|
#include "zm_camera.h"
|
|
|
|
#include "zm_buffer.h"
|
|
|
|
#include "zm_regexp.h"
|
2016-05-17 22:01:33 +08:00
|
|
|
#include "zm_packetqueue.h"
|
2005-10-18 05:55:02 +08:00
|
|
|
|
2011-06-21 17:19:10 +08:00
|
|
|
#include <sys/param.h>
|
|
|
|
|
2005-10-18 05:55:02 +08:00
|
|
|
//
|
|
|
|
// Class representing 'file' cameras, i.e. those which are
|
2014-01-28 08:52:46 +08:00
|
|
|
// accessed using a single file which contains the latest jpeg data
|
2005-10-18 05:55:02 +08:00
|
|
|
//
|
|
|
|
class FileCamera : public Camera
|
|
|
|
{
|
|
|
|
protected:
|
2016-04-04 22:11:48 +08:00
|
|
|
char path[PATH_MAX];
|
2005-10-18 05:55:02 +08:00
|
|
|
|
|
|
|
public:
|
2016-04-30 20:27:10 +08:00
|
|
|
FileCamera( int p_id, const char *p_path, int p_width, int p_height, int p_colours, int p_brightness, int p_contrast, int p_hue, int p_colour, bool p_capture, bool p_record_audio );
|
2016-04-04 22:11:48 +08:00
|
|
|
~FileCamera();
|
2005-10-18 05:55:02 +08:00
|
|
|
|
2016-04-04 22:11:48 +08:00
|
|
|
const char *Path() const { return( path ); }
|
2005-10-18 05:55:02 +08:00
|
|
|
|
2016-04-04 22:11:48 +08:00
|
|
|
void Initialise();
|
|
|
|
void Terminate();
|
|
|
|
int PreCapture();
|
|
|
|
int Capture( Image &image );
|
|
|
|
int PostCapture();
|
2016-08-31 22:00:10 +08:00
|
|
|
int CaptureAndRecord( Image &image, bool recording, char* event_directory ) {return(0);};
|
2005-10-18 05:55:02 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ZM_FILE_CAMERA_H
|