added mutex to video processor

This commit is contained in:
csoler 2015-08-24 21:42:01 -04:00
parent 3f1ebca803
commit da69db39d6
2 changed files with 38 additions and 16 deletions

View file

@ -96,7 +96,7 @@ class VideoProcessor
{
public:
VideoProcessor() ;
virtual ~VideoProcessor() {}
virtual ~VideoProcessor() ;
enum CodecId {
VIDEO_PROCESSOR_CODEC_ID_UNKNOWN = 0x0000,
@ -167,5 +167,7 @@ class VideoProcessor
float _estimated_bandwidth_out ;
float _target_bandwidth_out ;
RsMutex vpMtx ;
};