zoneminder/src
Peter Keresztes Schmidt d8d27bcc92 Time: Replace remaining DeltaTimeval usage with std::chrono 2021-06-07 23:53:53 +02:00
..
CMakeLists.txt Time: Convert some timeval operations to std::chrono 2021-06-07 23:53:53 +02:00
jinclude.h
zm.cpp Convert NULL/0 to nullptr 2020-08-26 22:03:40 +02:00
zm.h Gut out zm.h since it is used only to store the self variable 2021-02-04 18:02:08 +01:00
zm_analysis_thread.cpp Time: Implement duration_cast between timeval and std::chrono::duration 2021-06-06 15:15:05 +02:00
zm_analysis_thread.h add Stopped function to test whether the analysis thread is stopped from outside the class 2021-04-27 10:28:46 -04:00
zm_box.h Box: Make range calculations mathematically correct 2021-05-16 19:41:45 +02:00
zm_buffer.cpp More debug in read_into 2021-04-17 12:50:26 -04:00
zm_buffer.h Don't tidy in extract as we assume the space will be used soon. 2021-04-19 10:26:08 -04:00
zm_camera.cpp FFmpeg: Remove code paths required only by 2.8 and older 2021-06-05 20:40:12 +02:00
zm_camera.h FFmpeg: Remove code paths required only by 2.8 and older 2021-06-05 20:40:12 +02:00
zm_comms.cpp Misc: Rename namespace ZM to zm 2021-06-06 19:11:11 +02:00
zm_comms.h Misc: Rename namespace ZM to zm 2021-06-06 19:11:11 +02:00
zm_config.cpp Replace raw mysql_query calls with the zmDb* functions 2021-03-06 00:12:18 +01:00
zm_config.h Build: Promote libavformat to a required dependency 2021-06-05 14:25:27 +02:00
zm_config_data.h.in misc: Move ZM_HAS_* defines to zoneminder-config.cmake 2021-05-31 23:29:29 +02:00
zm_crypt.cpp Crypto: Use new hashing API 2021-05-30 22:56:21 +02:00
zm_crypt.h Crypto: Implement SHA1 hashing 2021-05-30 22:56:21 +02:00
zm_crypto_generics.h Misc: Rename namespace ZM to zm 2021-06-06 19:11:11 +02:00
zm_crypto_gnutls.h Crypto: Implement SHA1 hashing 2021-05-30 22:56:21 +02:00
zm_crypto_openssl.h Crypto: Implement SHA1 hashing 2021-05-30 22:56:21 +02:00
zm_curl_camera.cpp finish converting Capture to std::shared_ptr 2021-05-09 07:35:47 -04:00
zm_curl_camera.h finish converting Capture to std::shared_ptr 2021-05-09 07:35:47 -04:00
zm_db.cpp make it so that the queue will more likely be empty on termination. Do not queue more sql if terminate flag is set. 2021-05-10 12:54:35 -04:00
zm_db.h add a stop function to dbQueue to clear out the queue before we kill log. 2021-04-23 09:25:07 -04:00
zm_decoder_thread.cpp Must join the previous thread before starting a new one or we crash 2021-04-17 12:50:26 -04:00
zm_decoder_thread.h reintroduce Start() methods to analysis and decoding thread 2021-04-07 20:36:38 -04:00
zm_define.h zm_define: Include cstddef so we have size_t 2021-05-16 16:42:58 +02:00
zm_event.cpp Time: Replace remaining DeltaTimeval usage with std::chrono 2021-06-07 23:53:53 +02:00
zm_event.h Switch ZMPacket * to a shared_ptr<ZMPacket>. This is so that in LockedPacket we can unlock and then notify and be confident that packet_ won't have been deleted. Change ZMPacket->timestamp to be a timeval instead of timeval *. This might not have been necessary but I like it. No longer cuse the ZMPacket object to wrap the shared image buffers and timestamps. Use a vector for image_buffers. 2021-05-08 21:14:20 -04:00
zm_eventstream.cpp Build: Promote libavcodec to a required dependency 2021-06-05 14:25:54 +02:00
zm_eventstream.h Misc: Cleanup some includes 2021-06-05 15:08:38 +02:00
zm_exception.cpp
zm_exception.h improvements reported by cppcheck 2020-11-01 16:11:19 -05:00
zm_ffmpeg.cpp FFmpeg: Remove code paths required only by 2.8 and older 2021-06-05 20:40:12 +02:00
zm_ffmpeg.h FFmpeg: Remove code paths required only by 2.8 and older 2021-06-05 20:40:12 +02:00
zm_ffmpeg_camera.cpp FFmpeg: Remove code paths required only by 2.8 and older 2021-06-05 20:40:12 +02:00
zm_ffmpeg_camera.h Build: Promote libswscale to a required dependency 2021-06-05 14:27:31 +02:00
zm_ffmpeg_input.cpp FFmpeg: Remove code paths required only by 2.8 and older 2021-06-05 20:40:12 +02:00
zm_ffmpeg_input.h Misc: Cleanup some includes 2021-06-05 15:08:38 +02:00
zm_ffmpeg_output.cpp FFmpeg: Remove code paths required only by 2.8 and older 2021-06-05 20:40:12 +02:00
zm_ffmpeg_output.h Misc: Cleanup some includes 2021-06-05 15:08:38 +02:00
zm_fifo.cpp style and performance improvements reported by cppcheck 2021-05-09 16:39:38 -04:00
zm_fifo.h packet can be const 2021-04-20 13:59:54 -04:00
zm_fifo_debug.cpp fix use of %d when %u is wanted 2021-04-20 11:06:54 -04:00
zm_fifo_debug.h Split zm_fifo up into zm_fifo, zm_fifo_debug and zm_fifo_stream. Implement a Fifo class to keep the filehandle open. 2021-03-01 16:47:18 -05:00
zm_fifo_stream.cpp fix use of %d when %u is wanted 2021-04-20 11:07:22 -04:00
zm_fifo_stream.h Split zm_fifo up into zm_fifo, zm_fifo_debug and zm_fifo_stream. Implement a Fifo class to keep the filehandle open. 2021-03-01 16:47:18 -05:00
zm_file_camera.cpp Switch ZMPacket * to a shared_ptr<ZMPacket>. This is so that in LockedPacket we can unlock and then notify and be confident that packet_ won't have been deleted. Change ZMPacket->timestamp to be a timeval instead of timeval *. This might not have been necessary but I like it. No longer cuse the ZMPacket object to wrap the shared image buffers and timestamps. Use a vector for image_buffers. 2021-05-08 21:14:20 -04:00
zm_file_camera.h Switch ZMPacket * to a shared_ptr<ZMPacket>. This is so that in LockedPacket we can unlock and then notify and be confident that packet_ won't have been deleted. Change ZMPacket->timestamp to be a timeval instead of timeval *. This might not have been necessary but I like it. No longer cuse the ZMPacket object to wrap the shared image buffers and timestamps. Use a vector for image_buffers. 2021-05-08 21:14:20 -04:00
zm_font.cpp ZmFont: Store character padding in font file 2021-04-25 23:13:21 +02:00
zm_font.h Utils: Add our own ASSERT macro 2021-05-30 21:41:58 +02:00
zm_frame.cpp Time: Replace remaining DeltaTimeval usage with std::chrono 2021-06-07 23:53:53 +02:00
zm_frame.h Time: Replace remaining DeltaTimeval usage with std::chrono 2021-06-07 23:53:53 +02:00
zm_group.cpp Fixes by cppcheck 2021-04-20 11:39:37 -04:00
zm_group.h Fixes by cppcheck 2021-04-20 11:39:37 -04:00
zm_image.cpp Misc: Rename namespace ZM to zm 2021-06-06 19:11:11 +02:00
zm_image.h Image: Move Edge class to its own namespace 2021-05-17 20:20:33 +02:00
zm_image_analyser.cpp
zm_image_analyser.h
zm_jpeg.cpp Cleanup and reorganize includes 2021-02-04 18:02:01 +01:00
zm_jpeg.h Cleanup and reorganize includes 2021-02-04 18:02:01 +01:00
zm_libvlc_camera.cpp finish converting Capture to std::shared_ptr 2021-05-09 07:35:47 -04:00
zm_libvlc_camera.h finish converting Capture to std::shared_ptr 2021-05-09 07:35:47 -04:00
zm_libvnc_camera.cpp finish converting Capture to std::shared_ptr 2021-05-09 07:35:47 -04:00
zm_libvnc_camera.h Drop Ubuntu Xenial support 2021-06-05 17:16:22 +02:00
zm_line.h Polygon: Implement clipping to a boundary box 2021-05-16 19:41:45 +02:00
zm_local_camera.cpp FFmpeg: Remove code paths required only by 2.8 and older 2021-06-05 20:40:12 +02:00
zm_local_camera.h Build: Promote libswscale to a required dependency 2021-06-05 14:27:31 +02:00
zm_logger.cpp Logger: Fix DB log messages not being populated 2021-05-22 10:52:57 +02:00
zm_logger.h Make sure all logging macro calls are terminated with a semicolon 2021-05-02 23:08:48 +02:00
zm_mem_utils.h Cleanup and reorganize includes 2021-02-04 18:02:01 +01:00
zm_monitor.cpp Time: Replace remaining DeltaTimeval usage with std::chrono 2021-06-07 23:53:53 +02:00
zm_monitor.h Build: Promote libavcodec to a required dependency 2021-06-05 14:25:54 +02:00
zm_monitorstream.cpp Time: Convert some timeval operations to std::chrono 2021-06-07 23:53:53 +02:00
zm_monitorstream.h Switch ZMPacket * to a shared_ptr<ZMPacket>. This is so that in LockedPacket we can unlock and then notify and be confident that packet_ won't have been deleted. Change ZMPacket->timestamp to be a timeval instead of timeval *. This might not have been necessary but I like it. No longer cuse the ZMPacket object to wrap the shared image buffers and timestamps. Use a vector for image_buffers. 2021-05-08 21:14:20 -04:00
zm_mpeg.cpp FFmpeg: Remove code paths required only by 2.8 and older 2021-06-05 20:40:12 +02:00
zm_mpeg.h Build: Promote libavcodec to a required dependency 2021-06-05 14:25:54 +02:00
zm_packet.cpp FFmpeg: Remove code paths required only by 2.8 and older 2021-06-05 20:40:12 +02:00
zm_packet.h Switch ZMPacket * to a shared_ptr<ZMPacket>. This is so that in LockedPacket we can unlock and then notify and be confident that packet_ won't have been deleted. Change ZMPacket->timestamp to be a timeval instead of timeval *. This might not have been necessary but I like it. No longer cuse the ZMPacket object to wrap the shared image buffers and timestamps. Use a vector for image_buffers. 2021-05-08 21:14:20 -04:00
zm_packetqueue.cpp More debugging around clearQueue. return early if deleting 2021-06-04 15:03:08 -04:00
zm_packetqueue.h Introduce get_packet_and_increase_it just so we can lose an extra grab lock and function calls, etc. In queuePacket, if the queue is full, WAIT instead of failing to queue. 2021-06-03 18:22:18 -04:00
zm_poly.cpp Polygon: Perform clip operation on existing object instead of returning a new clipped one 2021-05-16 19:42:41 +02:00
zm_poly.h Image: Move Edge class to its own namespace 2021-05-17 20:20:33 +02:00
zm_regexp.cpp Cleanup and reorganize includes 2021-02-04 18:02:01 +01:00
zm_regexp.h add explicit 2021-04-20 17:15:53 -04:00
zm_remote_camera.cpp utils: cleanup Base64Encode 2021-04-04 00:39:40 +02:00
zm_remote_camera.h Switch ZMPacket * to a shared_ptr<ZMPacket>. This is so that in LockedPacket we can unlock and then notify and be confident that packet_ won't have been deleted. Change ZMPacket->timestamp to be a timeval instead of timeval *. This might not have been necessary but I like it. No longer cuse the ZMPacket object to wrap the shared image buffers and timestamps. Use a vector for image_buffers. 2021-05-08 21:14:20 -04:00
zm_remote_camera_http.cpp Switch ZMPacket * to a shared_ptr<ZMPacket>. This is so that in LockedPacket we can unlock and then notify and be confident that packet_ won't have been deleted. Change ZMPacket->timestamp to be a timeval instead of timeval *. This might not have been necessary but I like it. No longer cuse the ZMPacket object to wrap the shared image buffers and timestamps. Use a vector for image_buffers. 2021-05-08 21:14:20 -04:00
zm_remote_camera_http.h Switch ZMPacket * to a shared_ptr<ZMPacket>. This is so that in LockedPacket we can unlock and then notify and be confident that packet_ won't have been deleted. Change ZMPacket->timestamp to be a timeval instead of timeval *. This might not have been necessary but I like it. No longer cuse the ZMPacket object to wrap the shared image buffers and timestamps. Use a vector for image_buffers. 2021-05-08 21:14:20 -04:00
zm_remote_camera_nvsocket.cpp Switch ZMPacket * to a shared_ptr<ZMPacket>. This is so that in LockedPacket we can unlock and then notify and be confident that packet_ won't have been deleted. Change ZMPacket->timestamp to be a timeval instead of timeval *. This might not have been necessary but I like it. No longer cuse the ZMPacket object to wrap the shared image buffers and timestamps. Use a vector for image_buffers. 2021-05-08 21:14:20 -04:00
zm_remote_camera_nvsocket.h Switch ZMPacket * to a shared_ptr<ZMPacket>. This is so that in LockedPacket we can unlock and then notify and be confident that packet_ won't have been deleted. Change ZMPacket->timestamp to be a timeval instead of timeval *. This might not have been necessary but I like it. No longer cuse the ZMPacket object to wrap the shared image buffers and timestamps. Use a vector for image_buffers. 2021-05-08 21:14:20 -04:00
zm_remote_camera_rtsp.cpp Misc: Rename namespace ZM to zm 2021-06-06 19:11:11 +02:00
zm_remote_camera_rtsp.h Build: Promote libavformat to a required dependency 2021-06-05 14:25:27 +02:00
zm_rgb.h rgb: Convert some constant defines to constexpr 2021-03-01 00:38:21 +01:00
zm_rtp.cpp
zm_rtp.h Cleanup and reorganize includes 2021-02-04 18:02:01 +01:00
zm_rtp_ctrl.cpp Misc: Rename namespace ZM to zm 2021-06-06 19:11:11 +02:00
zm_rtp_ctrl.h RtpCtrlThread: Add a missing include 2021-03-04 19:21:09 +01:00
zm_rtp_data.cpp Misc: Rename namespace ZM to zm 2021-06-06 19:11:11 +02:00
zm_rtp_data.h RtpDataThread: Convert to std::thread 2021-03-03 23:31:53 +01:00
zm_rtp_source.cpp Time: Convert some timeval operations to std::chrono 2021-06-07 23:53:53 +02:00
zm_rtp_source.h Build: Promote libavcodec to a required dependency 2021-06-05 14:25:54 +02:00
zm_rtsp.cpp Misc: Rename namespace ZM to zm 2021-06-06 19:11:11 +02:00
zm_rtsp.h Misc: Rename namespace ZM to zm 2021-06-06 19:11:11 +02:00
zm_rtsp_auth.cpp Use the new ByteArrayToHexString helper 2021-05-30 22:53:05 +02:00
zm_rtsp_auth.h rtsp_auth/Authenticator: Convert to new hashing API 2021-05-30 22:53:05 +02:00
zm_rtsp_server.cpp zm_rtsp_server: Remove an unused variable 2021-05-01 00:24:54 +02:00
zm_rtsp_server_adts_source.cpp FFmpeg: Remove code paths required only by 2.8 and older 2021-06-05 20:40:12 +02:00
zm_rtsp_server_adts_source.h FFmpeg: Remove code paths required only by 2.8 and older 2021-06-05 20:40:12 +02:00
zm_rtsp_server_authenticator.h add jwt token as a std:;string 2021-03-22 17:49:59 -04:00
zm_rtsp_server_device_source.cpp style and performance improvements reported by cppcheck 2021-05-09 16:39:38 -04:00
zm_rtsp_server_device_source.h Use the power of smart pointers to manage Monitor instances 2021-02-07 21:20:45 +01:00
zm_rtsp_server_fifo_adts_source.cpp style and performance improvements reported by cppcheck 2021-05-09 16:39:38 -04:00
zm_rtsp_server_fifo_adts_source.h style and performance improvements reported by cppcheck 2021-05-09 16:39:38 -04:00
zm_rtsp_server_fifo_audio_source.cpp pass fifo by const ref 2021-04-20 17:18:00 -04:00
zm_rtsp_server_fifo_audio_source.h pass fifo by const ref 2021-04-20 17:18:00 -04:00
zm_rtsp_server_fifo_h264_source.cpp style and performance improvements reported by cppcheck 2021-05-09 16:39:38 -04:00
zm_rtsp_server_fifo_h264_source.h style and performance improvements reported by cppcheck 2021-05-09 16:39:38 -04:00
zm_rtsp_server_fifo_source.cpp Don't print out buffer since it isn't zero terminated 2021-05-31 10:19:58 -04:00
zm_rtsp_server_fifo_source.h style and performance improvements reported by cppcheck 2021-05-09 16:39:38 -04:00
zm_rtsp_server_fifo_video_source.cpp style and performance improvements reported by cppcheck 2021-05-09 16:39:38 -04:00
zm_rtsp_server_fifo_video_source.h style and performance improvements reported by cppcheck 2021-05-09 16:39:38 -04:00
zm_rtsp_server_frame.h Fix logging format string mismatches 2021-04-30 00:26:24 +02:00
zm_rtsp_server_server_media_subsession.cpp style and performance improvements reported by cppcheck 2021-05-09 16:39:38 -04:00
zm_rtsp_server_server_media_subsession.h Add a fifo version of the rtsp server 2021-03-01 16:46:48 -05:00
zm_rtsp_server_thread.cpp Switch from live555 to PHZ76/RtspServer 2021-03-10 11:01:04 -05:00
zm_rtsp_server_thread.h Switch from live555 to PHZ76/RtspServer 2021-03-10 11:01:04 -05:00
zm_rtsp_server_unicast_server_media_subsession.cpp Use fifo version of code 2021-03-01 16:49:27 -05:00
zm_rtsp_server_unicast_server_media_subsession.h Replace #pragama once with include guards to be consistent 2021-02-04 18:02:08 +01:00
zm_sdp.cpp FFmpeg: Remove code paths required only by 2.8 and older 2021-06-05 20:40:12 +02:00
zm_sdp.h FFmpeg: Remove code paths required only by 2.8 and older 2021-06-05 20:40:12 +02:00
zm_sendfile.h Misc: Cleanup some includes 2021-06-05 15:08:38 +02:00
zm_signal.cpp Fix logging format string mismatches 2021-04-30 00:26:24 +02:00
zm_signal.h Cleanup and reorganize includes 2021-02-04 18:02:01 +01:00
zm_storage.cpp Cleanup and reorganize includes 2021-02-04 18:02:01 +01:00
zm_storage.h Fix warnings reported by -Wignored-qualifiers 2021-02-26 19:31:32 +01:00
zm_stream.cpp Build: Promote libavcodec to a required dependency 2021-06-05 14:25:54 +02:00
zm_stream.h Build: Promote libavcodec to a required dependency 2021-06-05 14:25:54 +02:00
zm_swscale.cpp FFmpeg: Remove code paths required only by 2.8 and older 2021-06-05 20:40:12 +02:00
zm_swscale.h Build: Promote libswscale to a required dependency 2021-06-05 14:27:31 +02:00
zm_time.h Time: Replace remaining DeltaTimeval usage with std::chrono 2021-06-07 23:53:53 +02:00
zm_user.cpp Use the new ByteArrayToHexString helper 2021-05-30 22:53:05 +02:00
zm_user.h pass jwt_token_str by reference 2021-04-20 17:04:45 -04:00
zm_utils.cpp Misc: Rename namespace ZM to zm 2021-06-06 19:11:11 +02:00
zm_utils.h Misc: Rename namespace ZM to zm 2021-06-06 19:11:11 +02:00
zm_vector2.h Box: Make range calculations mathematically correct 2021-05-16 19:41:45 +02:00
zm_videostore.cpp FFmpeg: Remove code paths required only by 2.8 and older 2021-06-05 20:40:12 +02:00
zm_videostore.h Build: Promote libswresample to a required dependency 2021-06-05 14:27:42 +02:00
zm_zone.cpp Polygon: Perform clip operation on existing object instead of returning a new clipped one 2021-05-16 19:42:41 +02:00
zm_zone.h Coord: Rename to Vector2 2021-05-14 20:14:50 +02:00
zm_zone_stats.h Box+Poly: Remove direct accessors to {Hi,Lo}{X,Y} 2021-05-16 16:42:58 +02:00
zmc.cpp Time: Remove DELTA_TIMEVAL macro and replace usage with proper std::chrono::duration operations 2021-06-06 16:41:36 +02:00
zms.cpp Build: Promote libavcodec to a required dependency 2021-06-05 14:25:54 +02:00
zmu.cpp LocalCamera: Remove support for V4L1 2021-05-31 23:29:29 +02:00