Change comments for many Camera subclasses so that comments match the subclass.
This commit is contained in:
parent
1bae37cd05
commit
af7a49d8d0
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue