diff options
Diffstat (limited to 'sensor')
-rw-r--r-- | sensor/include/trygvis/sensor/io.h | 6 | ||||
-rw-r--r-- | sensor/main/io.cpp | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/sensor/include/trygvis/sensor/io.h b/sensor/include/trygvis/sensor/io.h index dd1460b..71b0b84 100644 --- a/sensor/include/trygvis/sensor/io.h +++ b/sensor/include/trygvis/sensor/io.h @@ -208,6 +208,12 @@ class SampleStreamParser { public: virtual int process(mutable_buffers_1 &buffer) = 0; + /** + * Tells the parser that the data that has been written so far either "is it" (there is no more input) or that + * it should just process what it has so far. It is ok to call process() after again after this method. + * + * TODO: should probably be renamed to "process()", "flush()" or "done()". + */ virtual int finish() = 0; virtual sample_format_type type() { diff --git a/sensor/main/io.cpp b/sensor/main/io.cpp index 6c384ff..74bc796 100644 --- a/sensor/main/io.cpp +++ b/sensor/main/io.cpp @@ -71,7 +71,6 @@ void ThreadSafeSampleOutputStream::write(SampleRecord const &sample) { underlying->write(sample); } - AddTimestampSampleOutputStream::AddTimestampSampleOutputStream(unique_ptr<SampleOutputStream> underlying, KeyDictionary &dict, const string ×tamp_name) : underlying_(move(underlying)), timestamp_key(dict.indexOf(timestamp_name)) { |