Change comments for many Camera subclasses so that comments match the subclass.

This commit is contained in:
Kevin Dalley 2014-01-27 16:52:46 -08:00
parent 1bae37cd05
commit af7a49d8d0
5 changed files with 10 additions and 9 deletions

View File

@ -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
{

View File

@ -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
{

View File

@ -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
{

View File

@ -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
{

View File

@ -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
{