Add record_audio member
This commit is contained in:
parent
92b98e1953
commit
4e8255c80a
|
@ -20,7 +20,7 @@
|
||||||
#include "zm.h"
|
#include "zm.h"
|
||||||
#include "zm_camera.h"
|
#include "zm_camera.h"
|
||||||
|
|
||||||
Camera::Camera( int p_id, SourceType p_type, int p_width, int p_height, int p_colours, int p_subpixelorder, int p_brightness, int p_contrast, int p_hue, int p_colour, bool p_capture ) :
|
Camera::Camera( int p_id, SourceType p_type, int p_width, int p_height, int p_colours, int p_subpixelorder, int p_brightness, int p_contrast, int p_hue, int p_colour, bool p_capture, bool record_audio ) :
|
||||||
id( p_id ),
|
id( p_id ),
|
||||||
type( p_type ),
|
type( p_type ),
|
||||||
width( p_width),
|
width( p_width),
|
||||||
|
@ -31,7 +31,8 @@ Camera::Camera( int p_id, SourceType p_type, int p_width, int p_height, int p_co
|
||||||
hue( p_hue ),
|
hue( p_hue ),
|
||||||
colour( p_colour ),
|
colour( p_colour ),
|
||||||
contrast( p_contrast ),
|
contrast( p_contrast ),
|
||||||
capture( p_capture )
|
capture( p_capture ),
|
||||||
|
record_audio( p_record_audio )
|
||||||
{
|
{
|
||||||
pixels = width * height;
|
pixels = width * height;
|
||||||
imagesize = pixels * colours;
|
imagesize = pixels * colours;
|
||||||
|
|
|
@ -47,9 +47,10 @@ protected:
|
||||||
int colour;
|
int colour;
|
||||||
int contrast;
|
int contrast;
|
||||||
bool capture;
|
bool capture;
|
||||||
|
bool record_audio;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Camera( int p_id, SourceType p_type, int p_width, int p_height, int p_colours, int p_subpixelorder, int p_brightness, int p_contrast, int p_hue, int p_colour, bool p_capture );
|
Camera( int p_id, SourceType p_type, int p_width, int p_height, int p_colours, int p_subpixelorder, int p_brightness, int p_contrast, int p_hue, int p_colour, bool p_capture, bool p_record_audio );
|
||||||
virtual ~Camera();
|
virtual ~Camera();
|
||||||
|
|
||||||
int getId() const { return( id ); }
|
int getId() const { return( id ); }
|
||||||
|
|
Loading…
Reference in New Issue