Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions plugins/CRTBernReaderModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ constexpr uint64_t source_id = 1002;
void
fake_sequence_id(uint64_t& seq_id)
{
seq_id = seq_id == max_seq_id ? 0 : ++seq_id;
seq_id = (seq_id == max_seq_id ? 0 : seq_id+1);
}

/**
Expand Down Expand Up @@ -163,7 +163,7 @@ CRTBernReaderModule::init(const std::shared_ptr<appfwk::ConfigurationManager> mf
}

void
CRTBernReaderModule::do_conf(const nlohmann::json& obj)
CRTBernReaderModule::do_conf(const nlohmann::json& /*obj*/)
{
// Configure HW interface?
if (!m_run_marker.load()) {
Expand Down
4 changes: 2 additions & 2 deletions plugins/CRTGrenobleReaderModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ constexpr uint64_t source_id = 1001;
void
fake_sequence_id(uint64_t& seq_id)
{
seq_id = seq_id == max_seq_id ? 0 : ++seq_id;
seq_id = (seq_id == max_seq_id ? 0 : seq_id+1);
}

/**
Expand Down Expand Up @@ -163,7 +163,7 @@ CRTGrenobleReaderModule::init(const std::shared_ptr<appfwk::ConfigurationManager
}

void
CRTGrenobleReaderModule::do_conf(const nlohmann::json& obj)
CRTGrenobleReaderModule::do_conf(const nlohmann::json& /*obj*/)
{
// Configure HW interface?
if (!m_run_marker.load()) {
Expand Down