fixed a bug of both threads not popping out(due to wrong frame packet) and end of acquisition wrongly inferred

This commit is contained in:
Dhanya Maliakal 2015-11-06 11:23:50 +01:00
parent 667c1c0304
commit 98ab99c53f

View File

@ -2244,6 +2244,11 @@ bool UDPStandardImplementation::popAndCheckEndofAcquisition(int ithread, char* w
}
}
}
//when both are not popped but curretn frame number is being processed
else{
if(nP[i] != dummyPacketValue)
endofAcquisition = false;
}
}
return endofAcquisition;