2007-07-16 20:39:13 +00:00
|
|
|
diff -x .svn -ruN motion-3.2.8.old/motion.c motion-3.2.8/motion.c
|
|
|
|
--- motion-3.2.8.old/motion.c 2007-03-31 12:54:31.000000000 +0200
|
|
|
|
+++ motion-3.2.8/motion.c 2007-03-31 13:08:27.000000000 +0200
|
|
|
|
@@ -1282,6 +1282,7 @@
|
2006-08-05 16:13:13 +00:00
|
|
|
* httpd-control snaps are always enabled.
|
|
|
|
*/
|
2007-04-02 10:27:11 +00:00
|
|
|
|
|
|
|
+#ifdef HAVE_FFMPEG
|
2006-08-05 16:13:13 +00:00
|
|
|
/* time_current_frame is used both for snapshot and timelapse features */
|
2007-04-02 10:27:11 +00:00
|
|
|
time_current_frame = cnt->currenttime;
|
|
|
|
|
2007-07-16 20:39:13 +00:00
|
|
|
@@ -1291,7 +1292,7 @@
|
2007-04-02 10:27:11 +00:00
|
|
|
event(cnt, EVENT_IMAGE_SNAPSHOT, newimg, NULL, NULL, cnt->currenttime_tm);
|
2006-08-05 16:13:13 +00:00
|
|
|
cnt->snapshot = 0;
|
|
|
|
}
|
|
|
|
-
|
|
|
|
+#endif /* HAVE_FFMPEG */
|
2007-04-02 10:27:11 +00:00
|
|
|
|
2006-08-05 16:13:13 +00:00
|
|
|
/***** MOTION LOOP - TIMELAPSE FEATURE SECTION *****/
|
|
|
|
|
2007-07-16 20:39:13 +00:00
|
|
|
@@ -1366,9 +1367,9 @@
|
2006-08-05 16:13:13 +00:00
|
|
|
event(cnt, EVENT_TIMELAPSEEND, NULL, NULL, NULL, cnt->currenttime_tm);
|
|
|
|
|
|
|
|
|
2007-04-02 10:27:11 +00:00
|
|
|
+ time_last_frame = time_current_frame;
|
|
|
|
#endif /* HAVE_FFMPEG */
|
|
|
|
|
|
|
|
- time_last_frame = time_current_frame;
|
2006-08-05 16:13:13 +00:00
|
|
|
|
2007-04-02 10:27:11 +00:00
|
|
|
|
|
|
|
/***** MOTION LOOP - VIDEO LOOPBACK SECTION *****/
|