diff --git a/src/zm_curl_camera.h b/src/zm_curl_camera.h index 1cf413454..dff2e3e52 100644 --- a/src/zm_curl_camera.h +++ b/src/zm_curl_camera.h @@ -36,8 +36,8 @@ #endif // -// Class representing 'remote' cameras, i.e. those which are -// accessed over a network connection. +// Class representing 'curl' cameras, i.e. those which are +// accessed using the curl library // class cURLCamera : public Camera { diff --git a/src/zm_ffmpeg_camera.h b/src/zm_ffmpeg_camera.h index 3b256d5d6..3b24c4d6f 100644 --- a/src/zm_ffmpeg_camera.h +++ b/src/zm_ffmpeg_camera.h @@ -27,8 +27,8 @@ #include "zm_ffmpeg.h" // -// Class representing 'remote' cameras, i.e. those which are -// accessed over a network connection. +// Class representing 'ffmpeg' cameras, i.e. those which are +// accessed using ffmpeg multimedia framework // class FfmpegCamera : public Camera { diff --git a/src/zm_file_camera.h b/src/zm_file_camera.h index ad972e372..2afdbc1f2 100644 --- a/src/zm_file_camera.h +++ b/src/zm_file_camera.h @@ -28,7 +28,7 @@ // // Class representing 'file' cameras, i.e. those which are -// accessed over a network connection. +// accessed using a single file which contains the latest jpeg data // class FileCamera : public Camera { diff --git a/src/zm_remote_camera_http.h b/src/zm_remote_camera_http.h index 0b161247a..5fe065cf9 100644 --- a/src/zm_remote_camera_http.h +++ b/src/zm_remote_camera_http.h @@ -27,8 +27,8 @@ #include "zm_utils.h" // -// Class representing 'remote' cameras, i.e. those which are -// accessed over a network connection. +// Class representing 'http' cameras, i.e. those which are +// accessed over a network connection using http // class RemoteCameraHttp : public RemoteCamera { diff --git a/src/zm_remote_camera_rtsp.h b/src/zm_remote_camera_rtsp.h index 359fea9f4..b5a1e3c89 100644 --- a/src/zm_remote_camera_rtsp.h +++ b/src/zm_remote_camera_rtsp.h @@ -28,8 +28,9 @@ #include "zm_ffmpeg.h" // -// Class representing 'remote' cameras, i.e. those which are -// accessed over a network connection. +// Class representing 'rtsp' cameras, i.e. those which are +// accessed over a network connection using rtsp protocol +// (Real Time Streaming Protocol) // class RemoteCameraRtsp : public RemoteCamera {