diff options
Diffstat (limited to 'gr-blocks/lib/wavfile_sink_impl.h')
-rw-r--r-- | gr-blocks/lib/wavfile_sink_impl.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gr-blocks/lib/wavfile_sink_impl.h b/gr-blocks/lib/wavfile_sink_impl.h index c837592ad9..48cf81b7f0 100644 --- a/gr-blocks/lib/wavfile_sink_impl.h +++ b/gr-blocks/lib/wavfile_sink_impl.h @@ -29,12 +29,16 @@ private: float d_min_sample_val; float d_normalize_shift; float d_normalize_fac; + std::vector<float> d_buffer; SNDFILE* d_fp; SNDFILE* d_new_fp; bool d_updated; boost::mutex d_mutex; + static constexpr int s_items_size = 8192; + static constexpr int s_max_channels = 24; + /*! * \brief If any file changes have occurred, update now. This is called * internally by work() and thus doesn't usually need to be called by |