From bb9cc45cd22af67ac275a5e73accbe14fee664d8 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 14 Oct 2009 16:10:01 +0000 Subject: Strip trailing whitespace and fix other whitespace errors (e.g. space/tab mixing). Whitespace changes only. Vimmers, try let c_space_errors = 1 in your .vimrc to highlight this kind of stuff in red. I don't know the emacs equivalent... git-svn-id: svn://localhost/ardour2/branches/3.0@5773 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/ardour/export_processor.h | 40 +++++++++++++++++------------------ 1 file changed, 20 insertions(+), 20 deletions(-) (limited to 'libs/ardour/ardour/export_processor.h') diff --git a/libs/ardour/ardour/export_processor.h b/libs/ardour/ardour/export_processor.h index 832b200848..c2cb5034c7 100644 --- a/libs/ardour/ardour/export_processor.h +++ b/libs/ardour/ardour/export_processor.h @@ -43,22 +43,22 @@ class ExportProcessor { private: /* Typedefs for utility processors */ - + typedef boost::shared_ptr SRConverterPtr; typedef boost::shared_ptr PReaderPtr; typedef boost::shared_ptr NormalizerPtr; typedef boost::shared_ptr TempFilePtr; - + typedef GraphSink FloatSink; typedef boost::shared_ptr FloatSinkPtr; typedef std::vector FloatSinkVect; - + typedef boost::shared_ptr FilenamePtr; typedef boost::shared_ptr FormatPtr; - + typedef boost::shared_ptr FileWriterPtr; typedef std::list FileWriterList; - + public: ExportProcessor (Session & session); @@ -70,27 +70,27 @@ class ExportProcessor * @return 0 on success */ int prepare (FormatPtr format, FilenamePtr fname, uint32_t chans, bool split = false, nframes_t start = 0); - + /// Process data /** @param frames frames to process @return frames written **/ nframes_t process (float * data, nframes_t frames); - + /** should be called after all data is given to process **/ void prepare_post_processors (); - + void write_files (); - + static sigc::signal WritingFile; - + private: - + void reset (); - + Session & session; boost::shared_ptr status; - + /* these are initalized in prepare() */ - + FilenamePtr filename; NormalizerPtr normalizer; SRConverterPtr src; @@ -98,15 +98,15 @@ class ExportProcessor TempFilePtr temp_file; FloatSinkVect file_sinks; FileWriterList writer_list; - + /* general info */ - + uint32_t channels; nframes_t blocksize; nframes_t frame_rate; - + /* Processing */ - + bool tag; bool broadcast_info; bool split_files; @@ -115,9 +115,9 @@ class ExportProcessor bool trim_end; nframes_t silence_beginning; nframes_t silence_end; - + /* Progress info */ - + nframes_t temp_file_position; nframes_t temp_file_length; }; -- cgit v1.2.3