2013-12-13 01:45:29 +08:00
|
|
|
/*
|
|
|
|
* ZoneMinder Libvlc Camera Class Interface, $Date$, $Revision$
|
|
|
|
* Copyright (C) 2001-2008 Philip Coombes
|
|
|
|
*
|
|
|
|
* 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.
|
2013-12-13 01:45:29 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ZM_LIBVLC_CAMERA_H
|
|
|
|
#define ZM_LIBVLC_CAMERA_H
|
|
|
|
|
|
|
|
#include "zm_camera.h"
|
2021-03-03 16:20:06 +08:00
|
|
|
#include <condition_variable>
|
|
|
|
#include <mutex>
|
2013-12-13 01:45:29 +08:00
|
|
|
|
|
|
|
#if HAVE_LIBVLC
|
2013-12-21 12:47:12 +08:00
|
|
|
|
|
|
|
#if HAVE_VLC_VLC_H
|
2013-12-13 01:45:29 +08:00
|
|
|
#include "vlc/vlc.h"
|
2013-12-21 12:47:12 +08:00
|
|
|
#endif
|
2013-12-13 01:45:29 +08:00
|
|
|
|
|
|
|
// Used by libvlc callbacks
|
2017-11-13 00:42:34 +08:00
|
|
|
struct LibvlcPrivateData {
|
2016-06-22 00:21:18 +08:00
|
|
|
uint8_t* buffer;
|
|
|
|
uint8_t* prevBuffer;
|
|
|
|
time_t prevTime;
|
|
|
|
uint32_t bufferSize;
|
2021-03-03 16:20:06 +08:00
|
|
|
std::mutex mutex;
|
|
|
|
|
|
|
|
bool newImage;
|
|
|
|
std::mutex newImageMutex;
|
|
|
|
std::condition_variable newImageCv;
|
2013-12-13 01:45:29 +08:00
|
|
|
};
|
|
|
|
|
2017-11-13 00:42:34 +08:00
|
|
|
class LibvlcCamera : public Camera {
|
2019-01-09 02:06:19 +08:00
|
|
|
private:
|
|
|
|
static void log_callback( void *ptr, int level, const libvlc_log_t *ctx, const char *format, va_list vargs );
|
2013-12-13 01:45:29 +08:00
|
|
|
protected:
|
2016-06-22 00:21:18 +08:00
|
|
|
std::string mPath;
|
|
|
|
std::string mMethod;
|
|
|
|
std::string mOptions;
|
|
|
|
char **mOptArgV;
|
|
|
|
LibvlcPrivateData mLibvlcData;
|
|
|
|
std::string mTargetChroma;
|
|
|
|
uint8_t mBpp;
|
2013-12-13 01:45:29 +08:00
|
|
|
|
2016-06-22 00:21:18 +08:00
|
|
|
libvlc_instance_t *mLibvlcInstance;
|
|
|
|
libvlc_media_t *mLibvlcMedia;
|
|
|
|
libvlc_media_player_t *mLibvlcMediaPlayer;
|
2013-12-13 01:45:29 +08:00
|
|
|
|
|
|
|
public:
|
2021-02-08 02:12:39 +08:00
|
|
|
LibvlcCamera( const Monitor *monitor, const std::string &path, const std::string &p_method, const std::string &p_options, 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-06-22 00:21:18 +08:00
|
|
|
~LibvlcCamera();
|
2013-12-13 01:45:29 +08:00
|
|
|
|
2019-01-09 02:06:19 +08:00
|
|
|
const std::string &Path() const { return mPath; }
|
|
|
|
const std::string &Options() const { return mOptions; }
|
|
|
|
const std::string &Method() const { return mMethod; }
|
2013-12-13 01:45:29 +08:00
|
|
|
|
2016-06-22 00:21:18 +08:00
|
|
|
void Initialise();
|
|
|
|
void Terminate();
|
2013-12-13 01:45:29 +08:00
|
|
|
|
2021-04-21 00:59:27 +08:00
|
|
|
int PrimeCapture() override;
|
|
|
|
int PreCapture() override;
|
|
|
|
int Capture(ZMPacket &p) override;
|
|
|
|
int PostCapture() override;
|
|
|
|
int Close() override { return 0; };
|
2013-12-13 01:45:29 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // HAVE_LIBVLC
|
|
|
|
#endif // ZM_LIBVLC_CAMERA_H
|