Skip to content

Commit 9637f12

Browse files
committed
Control order of actions in worker thread
1 parent a85cf9e commit 9637f12

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed

v4l2capture.cpp

+15-10
Original file line numberDiff line numberDiff line change
@@ -990,6 +990,7 @@ class Device_manager_Worker_thread_args
990990
}
991991

992992
this->deviceStarted = 0;
993+
printf("Done opening\n");
993994
return 1;
994995
}
995996

@@ -1190,33 +1191,37 @@ class Device_manager_Worker_thread_args
11901191
if(deviceStarted) this->ReadFrame();
11911192

11921193
pthread_mutex_lock(&this->lock);
1193-
if(this->startDeviceFlag.size() > 0)
1194+
if(this->openDeviceFlag.size() > 0)
11941195
{
1195-
int buffer_count = this->startDeviceFlag[this->startDeviceFlag.size()-1];
1196-
this->startDeviceFlag.pop_back();
1197-
this->StartDeviceInternal(buffer_count);
1196+
std::string devName = this->openDeviceFlag[this->openDeviceFlag.size()-1];
1197+
this->openDeviceFlag.pop_back();
1198+
this->OpenDeviceInternal();
11981199
}
11991200
pthread_mutex_unlock(&this->lock);
12001201

12011202
pthread_mutex_lock(&this->lock);
1202-
if(this->openDeviceFlag.size() > 0)
1203+
if(this->startDeviceFlag.size() > 0 && this->openDeviceFlag.size() == 0)
12031204
{
1204-
std::string devName = this->openDeviceFlag[this->openDeviceFlag.size()-1];
1205-
this->openDeviceFlag.pop_back();
1206-
this->OpenDeviceInternal();
1205+
int buffer_count = this->startDeviceFlag[this->startDeviceFlag.size()-1];
1206+
this->startDeviceFlag.pop_back();
1207+
this->StartDeviceInternal(buffer_count);
12071208
}
12081209
pthread_mutex_unlock(&this->lock);
12091210

12101211
pthread_mutex_lock(&this->lock);
1211-
if(this->stopDeviceFlag)
1212+
if(this->stopDeviceFlag
1213+
&& this->openDeviceFlag.size() == 0
1214+
&& this->startDeviceFlag.size() == 0)
12121215
{
12131216
this->StopDeviceInternal();
12141217
this->stopDeviceFlag = 0;
12151218
}
12161219
pthread_mutex_unlock(&this->lock);
12171220

12181221
pthread_mutex_lock(&this->lock);
1219-
if(this->closeDeviceFlag)
1222+
if(this->closeDeviceFlag && !this->stopDeviceFlag
1223+
&& this->openDeviceFlag.size() == 0
1224+
&& this->startDeviceFlag.size() == 0)
12201225
{
12211226
this->CloseDeviceInternal();
12221227
this->closeDeviceFlag = 0;

0 commit comments

Comments
 (0)