From 1f2c7aae9fdd39a478944ccda5c9e82d76ab5db6 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Fri, 1 Sep 2017 13:59:25 +0200 Subject: o Renaming SampleOutputStream to SampleConsumer. o Some c++ style fixes. --- apps/sample-convert.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/sample-convert.cpp') diff --git a/apps/sample-convert.cpp b/apps/sample-convert.cpp index 81c08ca..2142462 100644 --- a/apps/sample-convert.cpp +++ b/apps/sample-convert.cpp @@ -93,13 +93,13 @@ public: options.push_back(&fs); } - unique_ptr o = open_sample_output_stream(outputStream, dict, output_format, options); + unique_ptr o = open_sample_writer(outputStream, dict, output_format, options); if (add_timestamp) { - o = make_unique(move(o), dict, timestamp_field); + o = make_unique(move(o), dict, timestamp_field); } - shared_ptr output(move(o)); + shared_ptr output(move(o)); auto input = make_shared(output, dict); -- cgit v1.2.3