Made brightness etc signed.

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@1115 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
stan 2004-09-25 18:26:09 +00:00
parent aff2ef8430
commit 4a5e2f9337
2 changed files with 8 additions and 8 deletions

View File

@ -40,10 +40,10 @@ protected:
unsigned int height; unsigned int height;
unsigned int palette; unsigned int palette;
unsigned int colours; unsigned int colours;
unsigned int brightness; int brightness;
unsigned int hue; int hue;
unsigned int colour; int colour;
unsigned int contrast; int contrast;
bool capture; bool capture;
public: public:

View File

@ -81,10 +81,10 @@ protected:
unsigned int height; // Normally the same as the camera, but not if partly rotated unsigned int height; // Normally the same as the camera, but not if partly rotated
RunMode run_mode; // Whether the monitor is running continuously or is triggered RunMode run_mode; // Whether the monitor is running continuously or is triggered
Orientation orientation; // Whether the image has to be rotated at all Orientation orientation; // Whether the image has to be rotated at all
unsigned int brightness; // The statically saved brightness of the camera int brightness; // The statically saved brightness of the camera
unsigned int contrast; // The statically saved contrast of the camera int contrast; // The statically saved contrast of the camera
unsigned int hue; // The statically saved hue of the camera int hue; // The statically saved hue of the camera
unsigned int colour; // The statically saved colour of the camera int colour; // The statically saved colour of the camera
char event_prefix[64]; // The prefix applied to event names as they are created char event_prefix[64]; // The prefix applied to event names as they are created
char label_format[64]; // The format of the timestamp on the images char label_format[64]; // The format of the timestamp on the images
Coord label_coord; // The coordinates of the timestamp on the images Coord label_coord; // The coordinates of the timestamp on the images