Skip to content

Commit 68112cb

Browse files
authored
4.2.1
4.2.1
2 parents 4b72282 + b7f8b2d commit 68112cb

16 files changed

+1014
-769
lines changed

CHANGELOG

+20-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
Summary of changes for version 4.2.1 are below
2+
* Update version number to 4.2.1 / Changelog
3+
* Report to log options included in build
4+
* Add log messages on database actions(tosiara)
5+
* Revise log messages of port used for stream
6+
* Revise log messages when using v4l2 via netcam
7+
* Fix null terminator on EXIF of jpgs(tosiara)
8+
* Fix build with static libs for webp(Fabrice)
9+
* Guide update for initial setup.
10+
* Prevent webcontrol update of movie_passthrough
11+
* Remove confusing log message
12+
* Fix motion detection when using privacy mask
13+
* Correct thread locking for movie_passthrough
14+
* Revise guide for better mobile viewing
15+
* Revise additional stream timing
16+
* Fix stream timing(adameat)
17+
* Remove obsolete function reference
18+
* Change version number to 4.2+git
119
Summary of Changes for version 4.2 are below
220
* html fixes for legacy interface
321
* Fix typo in guide
@@ -89,7 +107,7 @@ Summary of Changes for version 4.2 are below
89107
* Revise %{host} and add %{ver} (tosiara)
90108
* Update for passthrough processing of cameras
91109
* Updated motion_guide.html
92-
* Revise webcontrol page to indicate the webcontrol_parms selection
110+
* Revise webcontrol page to indicate the webcontrol_parms selection
93111
* Validate v4l2 parms when using v4l2 via netcam
94112
* Capture images at start to prevent immediate events
95113
* Initialize thread number to eliminate inaccurate log notice.
@@ -101,7 +119,7 @@ Summary of Changes for version 4.2 are below
101119
* Include EXIF for webp images.
102120
* Report to log when user specifies invalid URL.
103121
* Update guide that is installed locally.
104-
* Updated version script to include date and dirty vs clean.
122+
* Updated version script to include date and dirty vs clean.
105123
Version 4.1.1 Changes Below
106124
* Fix file name for debug movies
107125
* Fix image saving when using highres option

alg.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1327,7 +1327,7 @@ void alg_update_reference_frame(struct context *cnt, int action)
13271327
int accept_timer = cnt->lastrate * ACCEPT_STATIC_OBJECT_TIME;
13281328
int i, threshold_ref;
13291329
int *ref_dyn = cnt->imgs.ref_dyn;
1330-
unsigned char *image_virgin = cnt->imgs.image_virgin.image_norm;
1330+
unsigned char *image_virgin = cnt->imgs.image_vprvcy.image_norm;
13311331
unsigned char *ref = cnt->imgs.ref;
13321332
unsigned char *smartmask = cnt->imgs.smartmask_final;
13331333
unsigned char *out = cnt->imgs.img_motion.image_norm;
@@ -1367,7 +1367,7 @@ void alg_update_reference_frame(struct context *cnt, int action)
13671367

13681368
} else { /* action == RESET_REF_FRAME - also used to initialize the frame at startup. */
13691369
/* Copy fresh image */
1370-
memcpy(cnt->imgs.ref, cnt->imgs.image_virgin.image_norm, cnt->imgs.size_norm);
1370+
memcpy(cnt->imgs.ref, cnt->imgs.image_vprvcy.image_norm, cnt->imgs.size_norm);
13711371
/* Reset static objects */
13721372
memset(cnt->imgs.ref_dyn, 0, cnt->imgs.motionsize * sizeof(*cnt->imgs.ref_dyn));
13731373
}

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ if test "${WEBP}" = "yes"; then
276276
AC_MSG_RESULT(found)
277277
AC_DEFINE([HAVE_WEBP], 1, [Define to 1 if WEBP is around])
278278
HAVE_WEBP="yes"
279-
TEMP_LIBS="$TEMP_LIBS -lwebp -lwebpmux"
279+
TEMP_LIBS="$TEMP_LIBS -lwebpmux -lwebp"
280280
else
281281
AC_MSG_RESULT(not found)
282282
fi

event.c

+5-1
Original file line numberDiff line numberDiff line change
@@ -159,11 +159,13 @@ static void do_sql_query(char *sqlquery, struct context *cnt, int save_id)
159159

160160
if (strlen(sqlquery) <= 0) {
161161
/* don't try to execute empty queries */
162+
MOTION_LOG(WRN, TYPE_DB, NO_ERRNO, "Ignoring empty sql query");
162163
return;
163164
}
164165

165166
#ifdef HAVE_MYSQL
166167
if (!strcmp(cnt->conf.database_type, "mysql")) {
168+
MOTION_LOG(DBG, TYPE_DB, NO_ERRNO, "Executing mysql query");
167169
if (mysql_query(cnt->database, sqlquery) != 0) {
168170
int error_code = mysql_errno(cnt->database);
169171

@@ -209,6 +211,7 @@ static void do_sql_query(char *sqlquery, struct context *cnt, int save_id)
209211

210212
#ifdef HAVE_PGSQL
211213
if (!strcmp(cnt->conf.database_type, "postgresql")) {
214+
MOTION_LOG(DBG, TYPE_DB, NO_ERRNO, "Executing postgresql query");
212215
PGresult *res;
213216

214217
res = PQexec(cnt->database_pg, sqlquery);
@@ -250,6 +253,7 @@ static void do_sql_query(char *sqlquery, struct context *cnt, int save_id)
250253
if ((!strcmp(cnt->conf.database_type, "sqlite3")) && (cnt->conf.database_dbname)) {
251254
int res;
252255
char *errmsg = 0;
256+
MOTION_LOG(DBG, TYPE_DB, NO_ERRNO, "Executing sqlite query");
253257
res = sqlite3_exec(cnt->database_sqlite3, sqlquery, NULL, 0, &errmsg);
254258
if (res != SQLITE_OK ) {
255259
MOTION_LOG(ERR, TYPE_DB, NO_ERRNO, _("SQLite error was %s"), errmsg);
@@ -672,7 +676,7 @@ static void event_image_preview(struct context *cnt,
672676
* Save best preview-shot also when no movies are recorded or imagepath
673677
* is used. Filename has to be generated - nothing available to reuse!
674678
*/
675-
MOTION_LOG(NTC, TYPE_ALL, NO_ERRNO, "different filename or picture only!");
679+
676680
/*
677681
* conf.picture_filename would normally be defined but if someone deleted it by
678682
* control interface it is better to revert to the default than fail.

motion.c

+76-10
Original file line numberDiff line numberDiff line change
@@ -1234,6 +1234,7 @@ static int motion_init(struct context *cnt)
12341234
cnt->imgs.width_high = 0;
12351235
cnt->imgs.height_high = 0;
12361236
cnt->imgs.size_high = 0;
1237+
cnt->movie_passthrough = cnt->conf.movie_passthrough;
12371238

12381239
MOTION_LOG(NTC, TYPE_ALL, NO_ERRNO
12391240
,_("Camera %d started: motion detection %s"),
@@ -1245,9 +1246,9 @@ static int motion_init(struct context *cnt)
12451246
if (init_camera_type(cnt) != 0 ) return -3;
12461247

12471248
if ((cnt->camera_type != CAMERA_TYPE_RTSP) &&
1248-
(cnt->conf.movie_passthrough)) {
1249+
(cnt->movie_passthrough)) {
12491250
MOTION_LOG(WRN, TYPE_ALL, NO_ERRNO,_("Pass-through processing disabled."));
1250-
cnt->conf.movie_passthrough = 0;
1251+
cnt->movie_passthrough = FALSE;
12511252
}
12521253

12531254
if ((cnt->conf.height == 0) || (cnt->conf.width == 0)) {
@@ -1327,6 +1328,7 @@ static int motion_init(struct context *cnt)
13271328
/* contains the moving objects of ref. frame */
13281329
cnt->imgs.ref_dyn = mymalloc(cnt->imgs.motionsize * sizeof(*cnt->imgs.ref_dyn));
13291330
cnt->imgs.image_virgin.image_norm = mymalloc(cnt->imgs.size_norm);
1331+
cnt->imgs.image_vprvcy.image_norm = mymalloc(cnt->imgs.size_norm);
13301332
cnt->imgs.smartmask = mymalloc(cnt->imgs.motionsize);
13311333
cnt->imgs.smartmask_final = mymalloc(cnt->imgs.motionsize);
13321334
cnt->imgs.smartmask_buffer = mymalloc(cnt->imgs.motionsize * sizeof(*cnt->imgs.smartmask_buffer));
@@ -1625,6 +1627,9 @@ static void motion_cleanup(struct context *cnt) {
16251627
free(cnt->imgs.image_virgin.image_norm);
16261628
cnt->imgs.image_virgin.image_norm = NULL;
16271629

1630+
free(cnt->imgs.image_vprvcy.image_norm);
1631+
cnt->imgs.image_vprvcy.image_norm = NULL;
1632+
16281633
free(cnt->imgs.labels);
16291634
cnt->imgs.labels = NULL;
16301635

@@ -2048,6 +2053,8 @@ static int mlp_capture(struct context *cnt){
20482053

20492054
mlp_mask_privacy(cnt);
20502055

2056+
memcpy(cnt->imgs.image_vprvcy.image_norm, cnt->current_image->image_norm, cnt->imgs.size_norm);
2057+
20512058
/*
20522059
* If the camera is a netcam we let the camera decide the pace.
20532060
* Otherwise we will keep on adding duplicate frames.
@@ -2121,7 +2128,7 @@ static int mlp_capture(struct context *cnt){
21212128

21222129
if (cnt->video_dev >= 0 &&
21232130
cnt->missing_frame_counter < (MISSING_FRAMES_TIMEOUT * cnt->conf.framerate)) {
2124-
memcpy(cnt->current_image->image_norm, cnt->imgs.image_virgin.image_norm, cnt->imgs.size_norm);
2131+
memcpy(cnt->current_image->image_norm, cnt->imgs.image_vprvcy.image_norm, cnt->imgs.size_norm);
21252132
} else {
21262133
cnt->lost_connection = 1;
21272134

@@ -2185,9 +2192,9 @@ static void mlp_detection(struct context *cnt){
21852192
* anyway
21862193
*/
21872194
if (cnt->detecting_motion || cnt->conf.setup_mode)
2188-
cnt->current_image->diffs = alg_diff_standard(cnt, cnt->imgs.image_virgin.image_norm);
2195+
cnt->current_image->diffs = alg_diff_standard(cnt, cnt->imgs.image_vprvcy.image_norm);
21892196
else
2190-
cnt->current_image->diffs = alg_diff(cnt, cnt->imgs.image_virgin.image_norm);
2197+
cnt->current_image->diffs = alg_diff(cnt, cnt->imgs.image_vprvcy.image_norm);
21912198

21922199
/* Lightswitch feature - has light intensity changed?
21932200
* This can happen due to change of light conditions or due to a sudden change of the camera
@@ -2290,7 +2297,7 @@ static void mlp_tuning(struct context *cnt){
22902297
*/
22912298
if ((cnt->conf.noise_tune && cnt->shots == 0) &&
22922299
(!cnt->detecting_motion && (cnt->current_image->diffs <= cnt->threshold)))
2293-
alg_noise_tune(cnt, cnt->imgs.image_virgin.image_norm);
2300+
alg_noise_tune(cnt, cnt->imgs.image_vprvcy.image_norm);
22942301

22952302

22962303
/*
@@ -3125,6 +3132,65 @@ static void motion_camera_ids(void){
31253132
}
31263133
}
31273134

3135+
static void motion_ntc(void){
3136+
3137+
#ifdef HAVE_V4L2
3138+
MOTION_LOG(DBG, TYPE_ALL, NO_ERRNO,_("v4l2 : available"));
3139+
#else
3140+
MOTION_LOG(DBG, TYPE_ALL, NO_ERRNO,_("v4l2 : not available"));
3141+
#endif
3142+
3143+
#ifdef HAVE_BKTR
3144+
MOTION_LOG(DBG, TYPE_ALL, NO_ERRNO,_("bktr : available"));
3145+
#else
3146+
MOTION_LOG(DBG, TYPE_ALL, NO_ERRNO,_("bktr : not available"));
3147+
#endif
3148+
3149+
#ifdef HAVE_WEBP
3150+
MOTION_LOG(DBG, TYPE_ALL, NO_ERRNO,_("webp : available"));
3151+
#else
3152+
MOTION_LOG(DBG, TYPE_ALL, NO_ERRNO,_("webp : not available"));
3153+
#endif
3154+
3155+
#ifdef HAVE_MMAL
3156+
MOTION_LOG(DBG, TYPE_ALL, NO_ERRNO,_("mmal : available"));
3157+
#else
3158+
MOTION_LOG(DBG, TYPE_ALL, NO_ERRNO,_("mmal : not available"));
3159+
#endif
3160+
3161+
#ifdef HAVE_FFMPEG
3162+
MOTION_LOG(DBG, TYPE_ALL, NO_ERRNO,_("ffmpeg : available"));
3163+
#else
3164+
MOTION_LOG(DBG, TYPE_ALL, NO_ERRNO,_("ffmpeg : not available"));
3165+
#endif
3166+
3167+
#ifdef HAVE_MYSQL
3168+
MOTION_LOG(DBG, TYPE_DB, NO_ERRNO,_("mysql : available"));
3169+
#else
3170+
MOTION_LOG(DBG, TYPE_DB, NO_ERRNO,_("mysql : not available"));
3171+
#endif
3172+
3173+
#ifdef HAVE_SQLITE3
3174+
MOTION_LOG(DBG, TYPE_DB, NO_ERRNO,_("sqlite3: available"));
3175+
#else
3176+
MOTION_LOG(DBG, TYPE_DB, NO_ERRNO,_("sqlite3: not available"));
3177+
#endif
3178+
3179+
#ifdef HAVE_PGSQL
3180+
MOTION_LOG(DBG, TYPE_DB, NO_ERRNO,_("pgsql : available"));
3181+
#else
3182+
MOTION_LOG(DBG, TYPE_DB, NO_ERRNO,_("pgsql : not available"));
3183+
#endif
3184+
3185+
#ifdef HAVE_INTL
3186+
MOTION_LOG(DBG, TYPE_DB, NO_ERRNO,_("nls : available"));
3187+
#else
3188+
MOTION_LOG(DBG, TYPE_DB, NO_ERRNO,_("nls : not available"));
3189+
#endif
3190+
3191+
3192+
}
3193+
31283194

31293195
/**
31303196
* motion_startup
@@ -3217,6 +3283,8 @@ static void motion_startup(int daemonize, int argc, char *argv[])
32173283

32183284
conf_output_parms(cnt_list);
32193285

3286+
motion_ntc();
3287+
32203288
motion_camera_ids();
32213289

32223290
initialize_chars();
@@ -3254,8 +3322,6 @@ static void motion_start_thread(struct context *cnt){
32543322
snprintf(service,6,"%s",cnt->conf.netcam_url);
32553323
MOTION_LOG(NTC, TYPE_ALL, NO_ERRNO,_("Camera ID: %d Camera Name: %s Service: %s")
32563324
,cnt->camera_id, cnt->conf.camera_name,service);
3257-
MOTION_LOG(NTC, TYPE_ALL, NO_ERRNO, _("Stream port %d"),
3258-
cnt->conf.stream_port);
32593325
} else {
32603326
MOTION_LOG(NTC, TYPE_ALL, NO_ERRNO,_("Camera ID: %d Camera Name: %s Device: %s")
32613327
,cnt->camera_id, cnt->conf.camera_name,cnt->conf.video_device);
@@ -4039,12 +4105,12 @@ void util_threadname_get(char *threadname){
40394105
}
40404106
int util_check_passthrough(struct context *cnt){
40414107
#if (HAVE_FFMPEG && LIBAVFORMAT_VERSION_MAJOR < 55)
4042-
if (cnt->conf.movie_passthrough)
4108+
if (cnt->movie_passthrough)
40434109
MOTION_LOG(INF, TYPE_NETCAM, NO_ERRNO
40444110
,_("FFMPEG version too old. Disabling pass-through processing."));
40454111
return 0;
40464112
#else
4047-
if (cnt->conf.movie_passthrough){
4113+
if (cnt->movie_passthrough){
40484114
MOTION_LOG(INF, TYPE_NETCAM, NO_ERRNO
40494115
,_("pass-through is enabled but is still experimental."));
40504116
return 1;

motion.h

+5-3
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,7 @@ struct images {
301301
struct image_data img_motion; /* Picture buffer for motion images */
302302
int *ref_dyn; /* Dynamic objects to be excluded from reference frame */
303303
struct image_data image_virgin; /* Last picture frame with no text or locate overlay */
304+
struct image_data image_vprvcy; /* Virgin image with the privacy mask applied */
304305
struct image_data preview_image; /* Picture buffer for best image when enables */
305306
unsigned char *mask; /* Buffer for the mask file */
306307
unsigned char *smartmask;
@@ -472,9 +473,10 @@ struct context {
472473
char extpipefilename[PATH_MAX];
473474
int movie_last_shot;
474475

475-
struct ffmpeg *ffmpeg_output;
476-
struct ffmpeg *ffmpeg_output_motion;
477-
struct ffmpeg *ffmpeg_timelapse;
476+
struct ffmpeg *ffmpeg_output;
477+
struct ffmpeg *ffmpeg_output_motion;
478+
struct ffmpeg *ffmpeg_timelapse;
479+
int movie_passthrough;
478480

479481
char timelapsefilename[PATH_MAX];
480482
char motionfilename[PATH_MAX];

0 commit comments

Comments
 (0)