X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fsession.cpp;h=2bd3a054038f846d2263a26caf3ee124422f9293;hb=a42efb9d247268dde5c78f112b3970211bac4088;hp=d6fef9a7eee143e0de1f3f877654f6e117066719;hpb=859ca3070b30afde85ac345e8761ebf3b10017b1;p=pulseview.git diff --git a/pv/session.cpp b/pv/session.cpp index d6fef9a..2bd3a05 100644 --- a/pv/session.cpp +++ b/pv/session.cpp @@ -179,6 +179,10 @@ void Session::start_capture(function error_handler) } } + // Clear signal data + for (const shared_ptr d : get_data()) + d->clear(); + // Begin the session sampling_thread_ = std::thread( &Session::sample_thread_proc, this, device_, @@ -233,9 +237,9 @@ bool Session::add_decoder(srd_decoder *const dec) // Make a list of all the channels std::vector all_channels; - for(const GSList *i = dec->channels; i; i = i->next) + for (const GSList *i = dec->channels; i; i = i->next) all_channels.push_back((const srd_channel*)i->data); - for(const GSList *i = dec->opt_channels; i; i = i->next) + for (const GSList *i = dec->opt_channels; i; i = i->next) all_channels.push_back((const srd_channel*)i->data); // Auto select the initial channels @@ -297,7 +301,7 @@ void Session::set_capture_state(capture_state state) lock_guard lock(sampling_mutex_); const bool changed = capture_state_ != state; capture_state_ = state; - if(changed) + if (changed) capture_state_changed(state); } @@ -411,6 +415,8 @@ void Session::sample_thread_proc(shared_ptr device, assert(device); assert(error_handler); + (void)device; + cur_samplerate_ = device_->read_config(ConfigKey::SAMPLERATE); try {