2017-06-23 05:58:32 +08:00
|
|
|
//
|
|
|
|
// ZoneMinder Core Interfaces, $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
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef ZM_EVENTSTREAM_H
|
|
|
|
#define ZM_EVENTSTREAM_H
|
|
|
|
|
|
|
|
#include <set>
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
#include "zm_image.h"
|
|
|
|
#include "zm_stream.h"
|
|
|
|
#include "zm_video.h"
|
2017-06-27 04:55:49 +08:00
|
|
|
#include "zm_ffmpeg_input.h"
|
2017-11-07 22:34:47 +08:00
|
|
|
#include "zm_monitor.h"
|
2017-12-20 00:01:03 +08:00
|
|
|
#include "zm_storage.h"
|
2017-06-23 05:58:32 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
#include "libavformat/avformat.h"
|
|
|
|
#include "libavformat/avio.h"
|
|
|
|
#include "libavcodec/avcodec.h"
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class EventStream : public StreamBase {
|
|
|
|
public:
|
|
|
|
typedef enum { MODE_SINGLE, MODE_ALL, MODE_ALL_GAPLESS } StreamMode;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
struct FrameData {
|
|
|
|
//unsigned long id;
|
|
|
|
time_t timestamp;
|
|
|
|
time_t offset;
|
|
|
|
double delta;
|
|
|
|
bool in_db;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct EventData {
|
|
|
|
unsigned long event_id;
|
|
|
|
unsigned long monitor_id;
|
|
|
|
unsigned long storage_id;
|
|
|
|
unsigned long frame_count;
|
|
|
|
time_t start_time;
|
|
|
|
double duration;
|
|
|
|
char path[PATH_MAX];
|
|
|
|
int n_frames;
|
|
|
|
FrameData *frames;
|
|
|
|
char video_file[PATH_MAX];
|
2017-12-20 00:01:03 +08:00
|
|
|
Storage::Schemes scheme;
|
2017-06-23 05:58:32 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static const int STREAM_PAUSE_WAIT = 250000; // Microseconds
|
|
|
|
|
|
|
|
static const StreamMode DEFAULT_MODE = MODE_SINGLE;
|
|
|
|
|
|
|
|
StreamMode mode;
|
|
|
|
bool forceEventChange;
|
|
|
|
|
|
|
|
int curr_frame_id;
|
|
|
|
double curr_stream_time;
|
2017-11-17 20:52:26 +08:00
|
|
|
bool send_frame;
|
2017-06-23 05:58:32 +08:00
|
|
|
|
|
|
|
EventData *event_data;
|
2017-06-27 04:55:49 +08:00
|
|
|
FFmpeg_Input *ffmpeg_input;
|
2017-06-23 05:58:32 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
bool loadEventData( int event_id );
|
|
|
|
bool loadInitialEventData( int init_event_id, unsigned int init_frame_id );
|
|
|
|
bool loadInitialEventData( int monitor_id, time_t event_time );
|
|
|
|
|
|
|
|
void checkEventLoaded();
|
|
|
|
void processCommand( const CmdMsg *msg );
|
|
|
|
bool sendFrame( int delta_us );
|
|
|
|
|
|
|
|
public:
|
|
|
|
EventStream() {
|
|
|
|
mode = DEFAULT_MODE;
|
|
|
|
|
|
|
|
forceEventChange = false;
|
|
|
|
|
|
|
|
curr_frame_id = 0;
|
|
|
|
curr_stream_time = 0.0;
|
2017-11-17 20:52:26 +08:00
|
|
|
send_frame = false;
|
2017-06-23 05:58:32 +08:00
|
|
|
|
|
|
|
event_data = 0;
|
|
|
|
|
|
|
|
// Used when loading frames from an mp4
|
|
|
|
input_codec_context = 0;
|
|
|
|
input_codec = 0;
|
|
|
|
|
2017-06-27 04:55:49 +08:00
|
|
|
ffmpeg_input = NULL;
|
2017-06-23 05:58:32 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
void setStreamStart( int init_event_id, unsigned int init_frame_id=0 ) {
|
|
|
|
loadInitialEventData( init_event_id, init_frame_id );
|
2017-11-07 22:34:47 +08:00
|
|
|
if ( !(monitor = Monitor::Load( event_data->monitor_id, false, Monitor::QUERY )) ) {
|
|
|
|
Fatal( "Unable to load monitor id %d for streaming", event_data->monitor_id );
|
|
|
|
return;
|
|
|
|
}
|
2017-06-23 05:58:32 +08:00
|
|
|
}
|
|
|
|
void setStreamStart( int monitor_id, time_t event_time ) {
|
|
|
|
loadInitialEventData( monitor_id, event_time );
|
2017-11-07 22:34:47 +08:00
|
|
|
if ( !(monitor = Monitor::Load( event_data->monitor_id, false, Monitor::QUERY )) ) {
|
|
|
|
Fatal( "Unable to load monitor id %d for streaming", monitor_id );
|
|
|
|
return;
|
|
|
|
}
|
2017-06-23 05:58:32 +08:00
|
|
|
}
|
|
|
|
void setStreamMode( StreamMode p_mode ) {
|
|
|
|
mode = p_mode;
|
|
|
|
}
|
|
|
|
void runStream();
|
|
|
|
Image *getImage();
|
|
|
|
private:
|
|
|
|
AVCodecContext *input_codec_context;
|
|
|
|
AVCodec *input_codec;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ZM_EVENTSTREAM_H
|