X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdata%2Fdecoder.cpp;h=292430b6f0969290d206258bc2859fa10b0f041e;hb=e92cd4e4cddac2639c1a5e278124b5bb22ace10f;hp=2848d16ca4dffd166697b2517193acaec7030592;hpb=e0fc58100fbcd6c3bfd5aecb213d7541a3436622;p=pulseview.git diff --git a/pv/data/decoder.cpp b/pv/data/decoder.cpp index 2848d16..292430b 100644 --- a/pv/data/decoder.cpp +++ b/pv/data/decoder.cpp @@ -22,6 +22,10 @@ #include +#include + +#include + #include "decoder.h" #include @@ -41,12 +45,17 @@ const int64_t Decoder::DecodeChunkLength = 4096; Decoder::Decoder(const srd_decoder *const dec, std::map > probes) : + boost::shared_ptr > probes, + GHashTable *options) : _decoder(dec), _probes(probes), + _options(options), + _session(NULL), _decoder_inst(NULL) { - init_decoder(); + if (!init_decoder()) + throw runtime_error("Failed to initialise decoder."); + begin_decode(); } @@ -54,6 +63,8 @@ Decoder::~Decoder() { _decode_thread.interrupt(); _decode_thread.join(); + + g_hash_table_destroy(_options); } const srd_decoder* Decoder::get_decoder() const @@ -94,7 +105,7 @@ void Decoder::clear_snapshots() { } -void Decoder::init_decoder() +bool Decoder::init_decoder() { if (!_probes.empty()) { @@ -111,8 +122,14 @@ void Decoder::init_decoder() } } - _decoder_inst = srd_inst_new(_decoder->id, NULL); - assert(_decoder_inst); + srd_session_new(&_session); + assert(_session); + + _decoder_inst = srd_inst_new(_session, _decoder->id, _options); + if(!_decoder_inst) { + qDebug() << "Failed to initialise decoder"; + return false; + } _decoder_inst->data_samplerate = _samplerate; @@ -131,6 +148,8 @@ void Decoder::init_decoder() } srd_inst_probe_set_all(_decoder_inst, probes); + + return true; } void Decoder::decode_proc(shared_ptr data) @@ -155,9 +174,16 @@ void Decoder::decode_proc(shared_ptr data) if (samplerate == 0.0) samplerate = 1.0; - srd_session_start(_probes.size(), snapshot->unit_size(), samplerate); + srd_session_config_set(_session, SRD_CONF_NUM_PROBES, + g_variant_new_uint64(_probes.size())); + srd_session_config_set(_session, SRD_CONF_UNITSIZE, + g_variant_new_uint64(snapshot->unit_size())); + srd_session_config_set(_session, SRD_CONF_SAMPLERATE, + g_variant_new_uint64((uint64_t)samplerate)); - srd_pd_output_callback_add(SRD_OUTPUT_ANN, + srd_session_start(_session); + + srd_pd_output_callback_add(_session, SRD_OUTPUT_ANN, Decoder::annotation_callback, this); for (int64_t i = 0; @@ -168,7 +194,8 @@ void Decoder::decode_proc(shared_ptr data) i + DecodeChunkLength, sample_count); snapshot->get_samples(chunk, i, chunk_end); - if (srd_session_send(i, chunk, chunk_end - i) != SRD_OK) + if (srd_session_send(_session, i, chunk, chunk_end - i) != + SRD_OK) break; } } @@ -185,6 +212,8 @@ void Decoder::annotation_callback(srd_proto_data *pdata, void *decoder) shared_ptr a(new Annotation(pdata)); lock_guard lock(d->_annotations_mutex); d->_annotations.push_back(a); + + d->new_decode_data(); } } // namespace data