Changed record_zone_stats to record_event_stats and added define.

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@180 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
stan 2002-12-11 22:41:40 +00:00
parent b0df713cdc
commit 58349ac9ae
3 changed files with 5 additions and 3 deletions

View File

@ -1525,7 +1525,7 @@ Monitor::Monitor( int p_id, char *p_name, int p_function, int p_device, int p_ch
}
}
record_zone_stats = true;
record_event_stats = ZM_RECORD_EVENT_STATS;
}
Monitor::~Monitor()
@ -1804,7 +1804,7 @@ bool Monitor::Analyse()
if ( zones[i]->Alarmed() )
{
alarm_image.Overlay( zones[i]->AlarmImage() );
if ( record_zone_stats )
if ( record_event_stats )
{
zones[i]->RecordStats( event );
}

View File

@ -612,7 +612,7 @@ protected:
SharedImages *shared_images;
bool record_zone_stats;
bool record_event_stats;
public:
Monitor( int p_id, char *p_name, int p_function, int p_device, int p_channel, int p_format, int p_width, int p_height, int p_colours, bool p_capture, char *p_label_format, const Coord &p_label_coord, int p_warmup_count, int p_pre_event_count, int p_post_event_count, int p_alarm_frame_count, int p_image_buffer_count, int p_fps_report_interval, int p_ref_blend_perc, int p_n_zones=0, Zone *p_zones[]=0 );

View File

@ -30,3 +30,5 @@
#define ZM_EVENT_DIR "events" // Event directory relative to web directory
#define ZM_FORCED_ALARM_SCORE 255 // Score to give X10 forced alarms
#define ZM_RECORD_EVENT_STATS true // Whether to record event statistical information, change to false if too slow