X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fdecoderstack.cpp;h=31dc8b309221c4721a01e3d881255955cf2ff7e5;hp=40683758a4c1280de4815e7439e09e68fc5e47cf;hb=3b68d03ddae96edb38a80f31bf6a990bde21cd1d;hpb=f9abf97e78bc4825d80926b0ebc6cbaef40768b1 diff --git a/pv/data/decoderstack.cpp b/pv/data/decoderstack.cpp index 4068375..31dc8b3 100644 --- a/pv/data/decoderstack.cpp +++ b/pv/data/decoderstack.cpp @@ -20,8 +20,6 @@ #include -#include - #include #include @@ -35,10 +33,10 @@ #include #include -using boost::lock_guard; -using boost::mutex; +using std::lock_guard; +using std::mutex; using boost::optional; -using boost::unique_lock; +using std::unique_lock; using std::deque; using std::make_pair; using std::max; @@ -82,7 +80,7 @@ DecoderStack::DecoderStack(pv::SigSession &session, DecoderStack::~DecoderStack() { if (_decode_thread.joinable()) { - _decode_thread.interrupt(); + _interrupt = true; _decode_thread.join(); } } @@ -186,7 +184,7 @@ void DecoderStack::begin_decode() shared_ptr data; if (_decode_thread.joinable()) { - _decode_thread.interrupt(); + _interrupt = true; _decode_thread.join(); } @@ -256,7 +254,8 @@ void DecoderStack::begin_decode() if (_samplerate == 0.0) _samplerate = 1.0; - _decode_thread = boost::thread(&DecoderStack::decode_proc, this); + _interrupt = false; + _decode_thread = std::thread(&DecoderStack::decode_proc, this); } uint64_t DecoderStack::get_max_sample_count() const @@ -273,11 +272,10 @@ uint64_t DecoderStack::get_max_sample_count() const optional DecoderStack::wait_for_data() const { unique_lock input_lock(_input_mutex); - while(!boost::this_thread::interruption_requested() && - !_frame_complete && _samples_decoded >= _sample_count) + while(!_interrupt && !_frame_complete && + _samples_decoded >= _sample_count) _input_cond.wait(input_lock); - return boost::make_optional( - !boost::this_thread::interruption_requested() && + return boost::make_optional(!_interrupt && (_samples_decoded < _sample_count || !_frame_complete), _sample_count); } @@ -291,9 +289,7 @@ void DecoderStack::decode_data( const unsigned int chunk_sample_count = DecodeChunkLength / _snapshot->unit_size(); - for (int64_t i = 0; - !boost::this_thread::interruption_requested() && - i < sample_count; + for (int64_t i = 0; !_interrupt && i < sample_count; i += chunk_sample_count) { lock_guard decode_lock(_global_decode_mutex);