aboutsummaryrefslogtreecommitdiff
path: root/apps/sample-select.cpp
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2015-03-22 18:14:45 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2015-03-22 18:14:45 +0100
commitec15f36073b77375a06457c423d9a56245aa9dfc (patch)
treecfaeff2569701df5bd096c9128fa987fc258407c /apps/sample-select.cpp
parent6bac290b92b635be047237b880144dbc163df6ec (diff)
downloadble-toys-ec15f36073b77375a06457c423d9a56245aa9dfc.tar.gz
ble-toys-ec15f36073b77375a06457c423d9a56245aa9dfc.tar.bz2
ble-toys-ec15f36073b77375a06457c423d9a56245aa9dfc.tar.xz
ble-toys-ec15f36073b77375a06457c423d9a56245aa9dfc.zip
o Renaming open_sample_input_stream to open_sample_stream_parser.
Diffstat (limited to 'apps/sample-select.cpp')
-rw-r--r--apps/sample-select.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/sample-select.cpp b/apps/sample-select.cpp
index d1e6d0e..e1bac07 100644
--- a/apps/sample-select.cpp
+++ b/apps/sample-select.cpp
@@ -93,7 +93,7 @@ public:
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());
+ parser = open_sample_stream_parser(p, dict, parser->type());
int recordCount = 0;