quit a bit earlier when stream is broken.
This commit is contained in:
parent
7ef26275bc
commit
4a82ce83a7
|
@ -920,8 +920,10 @@ void EventStream::runStream() {
|
|||
} // end if streaming stepping or doing nothing
|
||||
|
||||
if ( send_frame ) {
|
||||
if ( !sendFrame(delta_us) )
|
||||
if ( !sendFrame(delta_us) ) {
|
||||
zm_terminate = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
curr_stream_time = frame_data->timestamp;
|
||||
|
|
Loading…
Reference in New Issue