X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=wdq2wav.h;h=6e740f4e772d7a8b5f7db22b0865764a0bf27b7b;hb=6e0f65ebf4769e7f90e2ef29539cd493de9bf14b;hp=a5076c0b653d91fa3e8fc9d2778769fbc4f52307;hpb=9ccb27ac548ef8ff8f23cec5574d6d9fb8494779;p=wdq2wav.git diff --git a/wdq2wav.h b/wdq2wav.h index a5076c0..6e740f4 100644 --- a/wdq2wav.h +++ b/wdq2wav.h @@ -73,6 +73,7 @@ public: std::string m_error; int m_fd; bool m_bLegacy_format; + bool m_bHires; int m_nMaxChannels; int m_nChannels; unsigned long int m_nSamples; @@ -84,9 +85,12 @@ public: unsigned int m_time_acq_start; unsigned int m_time_acq_stop; double m_time_between_channel_samples; + + bool any_packed_channels(); + bool is_channel_packed(int iChannel); }; -class WindaqChannel +class WindaqChannel { public: WindaqFile& r_wdq; @@ -109,7 +113,7 @@ public: }; -class WavFile +class WavFile { public: bool m_valid; @@ -131,7 +135,7 @@ class WavFile bool WriteFile (); bool Play(); - + private: bool fill_header(); }; @@ -140,5 +144,5 @@ template inline T nearest (double x) { return (x > 0 ? - static_cast(x+0.5) : static_cast(x-0.5)); + static_cast(x+0.5) : static_cast(x-0.5)); }