aboutsummaryrefslogtreecommitdiffstats
path: root/src/odr-padenc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/odr-padenc.h')
-rw-r--r--src/odr-padenc.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/odr-padenc.h b/src/odr-padenc.h
index 2646305..9ecf4a4 100644
--- a/src/odr-padenc.h
+++ b/src/odr-padenc.h
@@ -65,6 +65,7 @@ struct PadEncoderOptions {
const char* sls_dir;
const char* output;
std::vector<std::string> dls_files;
+ const char* item_state_file;
PadEncoderOptions() :
padlen(58),
@@ -78,7 +79,8 @@ struct PadEncoderOptions {
max_slide_size(SLSEncoder::MAXSLIDESIZE_SIMPLE),
raw_slides(false),
sls_dir(NULL),
- output("/tmp/pad.fifo")
+ output("/tmp/pad.fifo"),
+ item_state_file(NULL)
{}
bool DLSEnabled() {return !dls_files.empty();}