diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2015-03-22 11:14:42 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2015-03-22 11:14:42 +0100 |
commit | d76bf876d4ce8e845a8e03a48b72a4ad4761359f (patch) | |
tree | cb8e786a1cd166e92658bc8b73ed1012c6bec93b /apps/sample-timestamp.cpp | |
parent | ac03535bc7d08c4fc05c19eda6271e92b6558e41 (diff) | |
download | ble-toys-d76bf876d4ce8e845a8e03a48b72a4ad4761359f.tar.gz ble-toys-d76bf876d4ce8e845a8e03a48b72a4ad4761359f.tar.bz2 ble-toys-d76bf876d4ce8e845a8e03a48b72a4ad4761359f.tar.xz ble-toys-d76bf876d4ce8e845a8e03a48b72a4ad4761359f.zip |
o RRD output.
Diffstat (limited to 'apps/sample-timestamp.cpp')
-rw-r--r-- | apps/sample-timestamp.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/sample-timestamp.cpp b/apps/sample-timestamp.cpp index 0affd36..0242021 100644 --- a/apps/sample-timestamp.cpp +++ b/apps/sample-timestamp.cpp @@ -176,7 +176,8 @@ public: return EXIT_FAILURE; } - unique_ptr<SampleOutputStream> unique_output_stream = open_sample_output_stream(shared_ptr<ostream>(&cout, noop_deleter), dict, parser->type()); + vector<sample_output_stream_option*> options = {}; + unique_ptr<SampleOutputStream> unique_output_stream = open_sample_output_stream(shared_ptr<ostream>(&cout, noop_deleter), dict, parser->type(), options); shared_ptr<SampleOutputStream> output_stream{std::move(unique_output_stream)}; shared_ptr<SampleOutputStream> p = make_shared<TimestampFixingSampleOutputStream>(output_stream, dict, timestamp_name, relative_name, relative_resolution, start_time); parser = open_sample_input_stream(p, dict, parser->type()); |