pdec ad frame config, wip

This commit is contained in:
Jakob Meier
2023-02-15 10:21:35 +01:00
parent 60c99fdbfb
commit a13ae7abcc
5 changed files with 29 additions and 11 deletions

View File

@ -0,0 +1,20 @@
#ifndef LINUX_IPCORE_PDECCONFIGDEFS_H_
#define LINUX_IPCORE_PDECCONFIGDEFS_H_
#include <string>
namespace pdecconfigdefs {
namespace paramkeys {
static const std::string POSITIVE_WINDOW = "positive_window";
static const std::string NEGATIVE_WINDOW = "negattive_window";
}
namespace defaultvalue {
static const uint8_t positiveWindow = 10;
static const uint8_t negativeWindow = 151;
}
}
#endif /* LINUX_IPCORE_PDECCONFIGDEFS_H_ */