Update of /cvsroot/sp-tk/SPTK4/src In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv4909 Modified Files: .clang-format all_pole_digital_filter.h all_zero_digital_filter.h autocorrelation.h cepstrum_to_minimum_phase_impulse_response.h excitation_generation.h fast_fourier_transform.h frequency_transform.h generalized_cepstrum_gain_normalization.cc generalized_cepstrum_gain_normalization.h generalized_cepstrum_inverse_gain_normalization.cc generalized_cepstrum_inverse_gain_normalization.h generalized_cepstrum_transform.cc generalized_cepstrum_transform.h input_source_from_stream.h input_source_interface.h input_source_interpolation.h input_source_interpolation_with_magic_number.h input_source_preprocessing_for_filter_gain.h levinson_durbin_recursion.h m_sequence_generation.cc m_sequence_generation.h normal_distributed_random_value_generation.h random_generation_interface.h Log Message: modify formatting Index: input_source_from_stream.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/input_source_from_stream.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** input_source_from_stream.h 14 Oct 2016 06:17:44 -0000 1.4 --- input_source_from_stream.h 24 Oct 2016 08:20:30 -0000 1.5 *************** *** 69,79 **** // ! virtual ~InputSourceFromStream() {} // ! virtual int GetSize() const { return read_size_; } // ! virtual bool IsValid() const { return is_valid_; } // --- 69,84 ---- // ! virtual ~InputSourceFromStream() { ! } // ! virtual int GetSize() const { ! return read_size_; ! } // ! virtual bool IsValid() const { ! return is_valid_; ! } // Index: generalized_cepstrum_inverse_gain_normalization.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/generalized_cepstrum_inverse_gain_normalization.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** generalized_cepstrum_inverse_gain_normalization.h 12 Oct 2016 13:39:47 -0000 1.1 --- generalized_cepstrum_inverse_gain_normalization.h 24 Oct 2016 08:20:30 -0000 1.2 *************** *** 58,71 **** // ! virtual ~GeneralizedCepstrumInverseGainNormalization() {} // ! int GetNumOrder() const { return num_order_; } // ! double GetGamma() const { return gamma_; } // ! bool IsValid() const { return is_valid_; } // --- 58,78 ---- // ! virtual ~GeneralizedCepstrumInverseGainNormalization() { ! } // ! int GetNumOrder() const { ! return num_order_; ! } // ! double GetGamma() const { ! return gamma_; ! } // ! bool IsValid() const { ! return is_valid_; ! } // Index: all_pole_digital_filter.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/all_pole_digital_filter.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** all_pole_digital_filter.h 12 Oct 2016 12:14:38 -0000 1.5 --- all_pole_digital_filter.h 24 Oct 2016 08:20:30 -0000 1.6 *************** *** 58,68 **** public: // ! StoredSignals() {} // ! ~StoredSignals() {} // ! void Clear() { std::fill(signals_.begin(), signals_.end(), 0.0); } private: --- 58,72 ---- public: // ! StoredSignals() { ! } // ! ~StoredSignals() { ! } // ! void Clear() { ! std::fill(signals_.begin(), signals_.end(), 0.0); ! } private: *************** *** 88,101 **** // ! virtual ~AllPoleDigitalFilter() {} // ! int GetNumFilterOrder() const { return num_filter_order_; } // ! bool GetTranspositionFlag() const { return transposition_; } // ! bool IsValid() const { return is_valid_; } // --- 92,112 ---- // ! virtual ~AllPoleDigitalFilter() { ! } // ! int GetNumFilterOrder() const { ! return num_filter_order_; ! } // ! bool GetTranspositionFlag() const { ! return transposition_; ! } // ! bool IsValid() const { ! return is_valid_; ! } // Index: levinson_durbin_recursion.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/levinson_durbin_recursion.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** levinson_durbin_recursion.h 12 Oct 2016 12:14:38 -0000 1.4 --- levinson_durbin_recursion.h 24 Oct 2016 08:20:30 -0000 1.5 *************** *** 56,61 **** class Buffer { public: ! Buffer() {} ! virtual ~Buffer() {} private: --- 56,63 ---- class Buffer { public: ! Buffer() { ! } ! virtual ~Buffer() { ! } private: *************** *** 66,73 **** // ! LevinsonDurbinRecursion() : epsilon_(1.0e-6) {} // ! virtual ~LevinsonDurbinRecursion() {} // --- 68,77 ---- // ! LevinsonDurbinRecursion() : epsilon_(1.0e-6) { ! } // ! virtual ~LevinsonDurbinRecursion() { ! } // *************** *** 79,83 **** // ! double GetEpsilon() const { return epsilon_; } // --- 83,89 ---- // ! double GetEpsilon() const { ! return epsilon_; ! } // Index: autocorrelation.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/autocorrelation.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** autocorrelation.h 12 Oct 2016 12:14:38 -0000 1.3 --- autocorrelation.h 24 Oct 2016 08:20:30 -0000 1.4 *************** *** 55,62 **** public: // ! Autocorrelation() : num_order_(0) {} // ! virtual ~Autocorrelation() {} // --- 55,64 ---- public: // ! Autocorrelation() : num_order_(0) { ! } // ! virtual ~Autocorrelation() { ! } // *************** *** 68,72 **** // ! int GetNumOrder() const { return num_order_; } // --- 70,76 ---- // ! int GetNumOrder() const { ! return num_order_; ! } // Index: normal_distributed_random_value_generation.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/normal_distributed_random_value_generation.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** normal_distributed_random_value_generation.h 12 Oct 2016 04:31:24 -0000 1.3 --- normal_distributed_random_value_generation.h 24 Oct 2016 08:20:30 -0000 1.4 *************** *** 60,64 **** // ! virtual ~NormalDistributedRandomValueGeneration() {} // --- 60,65 ---- // ! virtual ~NormalDistributedRandomValueGeneration() { ! } // Index: generalized_cepstrum_transform.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/generalized_cepstrum_transform.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** generalized_cepstrum_transform.h 14 Oct 2016 06:17:44 -0000 1.1 --- generalized_cepstrum_transform.h 24 Oct 2016 08:20:30 -0000 1.2 *************** *** 57,62 **** class Buffer { public: ! Buffer() {} ! virtual ~Buffer() {} private: --- 57,64 ---- class Buffer { public: ! Buffer() { ! } ! virtual ~Buffer() { ! } private: *************** *** 81,118 **** // ! virtual ~GeneralizedCepstrumTransform() {} // ! int GetNumInputOrder() const { return num_input_order_; } // ! double GetInputAlpha() const { return input_alpha_; } // ! double GetInputGamma() const { return input_gamma_; } // ! bool IsNormalizedInput() const { return is_normalized_input_; } // ! bool IsMultipliedInput() const { return is_multiplied_input_; } // ! int GetNumOutputOrder() const { return num_output_order_; } // ! double GetOutputAlpha() const { return output_alpha_; } // ! double GetOutputGamma() const { return output_gamma_; } // ! bool IsNormalizedOutut() const { return is_normalized_output_; } // ! bool IsMultipliedOutput() const { return is_multiplied_output_; } // ! bool IsValid() const { return is_valid_; } // --- 83,143 ---- // ! virtual ~GeneralizedCepstrumTransform() { ! } // ! int GetNumInputOrder() const { ! return num_input_order_; ! } // ! double GetInputAlpha() const { ! return input_alpha_; ! } // ! double GetInputGamma() const { ! return input_gamma_; ! } // ! bool IsNormalizedInput() const { ! return is_normalized_input_; ! } // ! bool IsMultipliedInput() const { ! return is_multiplied_input_; ! } // ! int GetNumOutputOrder() const { ! return num_output_order_; ! } // ! double GetOutputAlpha() const { ! return output_alpha_; ! } // ! double GetOutputGamma() const { ! return output_gamma_; ! } // ! bool IsNormalizedOutut() const { ! return is_normalized_output_; ! } // ! bool IsMultipliedOutput() const { ! return is_multiplied_output_; ! } // ! bool IsValid() const { ! return is_valid_; ! } // Index: excitation_generation.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/excitation_generation.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** excitation_generation.h 12 Oct 2016 12:14:38 -0000 1.4 --- excitation_generation.h 24 Oct 2016 08:20:30 -0000 1.5 *************** *** 59,66 **** // ! virtual ~ExcitationGeneration() {} // ! bool IsValid() const { return is_valid_; } // --- 59,69 ---- // ! virtual ~ExcitationGeneration() { ! } // ! bool IsValid() const { ! return is_valid_; ! } // Index: m_sequence_generation.cc =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/m_sequence_generation.cc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** m_sequence_generation.cc 12 Oct 2016 12:14:38 -0000 1.5 --- m_sequence_generation.cc 24 Oct 2016 08:20:30 -0000 1.6 *************** *** 56,62 **** namespace sptk { ! MSequenceGeneration::MSequenceGeneration() : x_(kInitialValue) {} ! void MSequenceGeneration::Reset() { x_ = kInitialValue; } bool MSequenceGeneration::Get(double *output) { --- 56,65 ---- namespace sptk { ! MSequenceGeneration::MSequenceGeneration() : x_(kInitialValue) { ! } ! void MSequenceGeneration::Reset() { ! x_ = kInitialValue; ! } bool MSequenceGeneration::Get(double *output) { Index: generalized_cepstrum_gain_normalization.cc =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/generalized_cepstrum_gain_normalization.cc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** generalized_cepstrum_gain_normalization.cc 12 Oct 2016 15:02:23 -0000 1.2 --- generalized_cepstrum_gain_normalization.cc 24 Oct 2016 08:20:30 -0000 1.3 *************** *** 45,50 **** #include "generalized_cepstrum_gain_normalization.h" ! #include <cmath> // std::pow, std::exp ! #include <vector> // std::vector #include "sptk_utils.h" --- 45,51 ---- #include "generalized_cepstrum_gain_normalization.h" ! #include <algorithm> // std::copy ! #include <cmath> // std::pow, std::exp ! #include <vector> // std::vector #include "sptk_utils.h" Index: generalized_cepstrum_gain_normalization.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/generalized_cepstrum_gain_normalization.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** generalized_cepstrum_gain_normalization.h 12 Oct 2016 13:08:14 -0000 1.1 --- generalized_cepstrum_gain_normalization.h 24 Oct 2016 08:20:30 -0000 1.2 *************** *** 58,71 **** // ! virtual ~GeneralizedCepstrumGainNormalization() {} // ! int GetNumOrder() const { return num_order_; } // ! double GetGamma() const { return gamma_; } // ! bool IsValid() const { return is_valid_; } // --- 58,78 ---- // ! virtual ~GeneralizedCepstrumGainNormalization() { ! } // ! int GetNumOrder() const { ! return num_order_; ! } // ! double GetGamma() const { ! return gamma_; ! } // ! bool IsValid() const { ! return is_valid_; ! } // Index: input_source_interface.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/input_source_interface.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** input_source_interface.h 14 Oct 2016 06:17:44 -0000 1.3 --- input_source_interface.h 24 Oct 2016 08:20:30 -0000 1.4 *************** *** 53,57 **** public: // ! virtual ~InputSourceInterface() {} // --- 53,58 ---- public: // ! virtual ~InputSourceInterface() { ! } // Index: input_source_preprocessing_for_filter_gain.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/input_source_preprocessing_for_filter_gain.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** input_source_preprocessing_for_filter_gain.h 14 Oct 2016 06:17:44 -0000 1.5 --- input_source_preprocessing_for_filter_gain.h 24 Oct 2016 08:20:30 -0000 1.6 *************** *** 74,87 **** // ! virtual ~InputSourcePreprocessingForFilterGain() {} // ! FilterGainType GetFilterGainType() const { return gain_type_; } // ! virtual int GetSize() const { return source_ ? source_->GetSize() : 0; } // ! virtual bool IsValid() const { return is_valid_; } // --- 74,94 ---- // ! virtual ~InputSourcePreprocessingForFilterGain() { ! } // ! FilterGainType GetFilterGainType() const { ! return gain_type_; ! } // ! virtual int GetSize() const { ! return source_ ? source_->GetSize() : 0; ! } // ! virtual bool IsValid() const { ! return is_valid_; ! } // Index: input_source_interpolation_with_magic_number.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/input_source_interpolation_with_magic_number.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** input_source_interpolation_with_magic_number.h 12 Oct 2016 12:14:38 -0000 1.4 --- input_source_interpolation_with_magic_number.h 24 Oct 2016 08:20:30 -0000 1.5 *************** *** 62,72 **** // ! virtual ~InputSourceInterpolationWithMagicNumber() {} // ! int GetFramePeriod() const { return frame_period_; } // ! int GetInterpolationPeriod() const { return interpolation_period_; } // --- 62,77 ---- // ! virtual ~InputSourceInterpolationWithMagicNumber() { ! } // ! int GetFramePeriod() const { ! return frame_period_; ! } // ! int GetInterpolationPeriod() const { ! return interpolation_period_; ! } // *************** *** 76,83 **** // ! double GetMagicNumber() const { return magic_number_; } // ! bool IsValid() const { return is_valid_; } // --- 81,92 ---- // ! double GetMagicNumber() const { ! return magic_number_; ! } // ! bool IsValid() const { ! return is_valid_; ! } // Index: fast_fourier_transform.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/fast_fourier_transform.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** fast_fourier_transform.h 12 Oct 2016 12:14:38 -0000 1.6 --- fast_fourier_transform.h 24 Oct 2016 08:20:30 -0000 1.7 *************** *** 55,62 **** public: // ! FastFourierTransform() : num_dimension_(0), inverse_(false) {} // ! virtual ~FastFourierTransform() {} // Set the number of dimensions and prepare the sine table. --- 55,64 ---- public: // ! FastFourierTransform() : num_dimension_(0), inverse_(false) { ! } // ! virtual ~FastFourierTransform() { ! } // Set the number of dimensions and prepare the sine table. *************** *** 64,74 **** // ! void SetInverseFlag(bool inverse) { inverse_ = inverse; } // ! int GetNumDimension() const { return num_dimension_; } // ! bool GetInverseFlag() const { return inverse_; } // --- 66,82 ---- // ! void SetInverseFlag(bool inverse) { ! inverse_ = inverse; ! } // ! int GetNumDimension() const { ! return num_dimension_; ! } // ! bool GetInverseFlag() const { ! return inverse_; ! } // Index: m_sequence_generation.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/m_sequence_generation.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** m_sequence_generation.h 12 Oct 2016 04:31:24 -0000 1.4 --- m_sequence_generation.h 24 Oct 2016 08:20:30 -0000 1.5 *************** *** 57,61 **** // ! virtual ~MSequenceGeneration() {} // --- 57,62 ---- // ! virtual ~MSequenceGeneration() { ! } // Index: generalized_cepstrum_transform.cc =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/generalized_cepstrum_transform.cc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** generalized_cepstrum_transform.cc 14 Oct 2016 09:15:14 -0000 1.2 --- generalized_cepstrum_transform.cc 24 Oct 2016 08:20:30 -0000 1.3 *************** *** 45,50 **** #include "generalized_cepstrum_transform.h" ! #include <algorithm> // std::transform ! #include <vector> // std::vector #include "frequency_transform.h" --- 45,51 ---- #include "generalized_cepstrum_transform.h" ! #include <algorithm> // std::copy, std::transform ! #include <functional> // std::multiplies ! #include <vector> // std::vector #include "frequency_transform.h" Index: frequency_transform.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/frequency_transform.h,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** frequency_transform.h 14 Oct 2016 06:17:44 -0000 1.9 --- frequency_transform.h 24 Oct 2016 08:20:30 -0000 1.10 *************** *** 56,61 **** class Buffer { public: ! Buffer() {} ! virtual ~Buffer() {} private: --- 56,63 ---- class Buffer { public: ! Buffer() { ! } ! virtual ~Buffer() { ! } private: *************** *** 70,86 **** // ! virtual ~FrequencyTransform() {} // ! int GetNumInputOrder() const { return num_input_order_; } // ! int GetNumOutputOrder() const { return num_output_order_; } // ! double GetAlpha() const { return alpha_; } // ! bool IsValid() const { return is_valid_; } // --- 72,97 ---- // ! virtual ~FrequencyTransform() { ! } // ! int GetNumInputOrder() const { ! return num_input_order_; ! } // ! int GetNumOutputOrder() const { ! return num_output_order_; ! } // ! double GetAlpha() const { ! return alpha_; ! } // ! bool IsValid() const { ! return is_valid_; ! } // Index: generalized_cepstrum_inverse_gain_normalization.cc =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/generalized_cepstrum_inverse_gain_normalization.cc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** generalized_cepstrum_inverse_gain_normalization.cc 12 Oct 2016 15:02:23 -0000 1.2 --- generalized_cepstrum_inverse_gain_normalization.cc 24 Oct 2016 08:20:30 -0000 1.3 *************** *** 45,50 **** #include "generalized_cepstrum_inverse_gain_normalization.h" ! #include <cmath> // std::pow, std::log ! #include <vector> // std::vector #include "sptk_utils.h" --- 45,51 ---- #include "generalized_cepstrum_inverse_gain_normalization.h" ! #include <algorithm> // std::copy ! #include <cmath> // std::pow, std::log ! #include <vector> // std::vector #include "sptk_utils.h" Index: .clang-format =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/.clang-format,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** .clang-format 12 Oct 2016 12:14:38 -0000 1.1 --- .clang-format 24 Oct 2016 08:20:30 -0000 1.2 *************** *** 1,3 **** BasedOnStyle: Google AllowShortBlocksOnASingleLine: false ! AllowShortBlocksOnASingleLine: false --- 1,3 ---- BasedOnStyle: Google AllowShortBlocksOnASingleLine: false ! AllowShortFunctionsOnASingleLine: false Index: random_generation_interface.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/random_generation_interface.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** random_generation_interface.h 7 Oct 2016 06:50:32 -0000 1.1 --- random_generation_interface.h 24 Oct 2016 08:20:30 -0000 1.2 *************** *** 53,57 **** public: // ! virtual ~RandomGenerationInterface() {} // --- 53,58 ---- public: // ! virtual ~RandomGenerationInterface() { ! } // Index: all_zero_digital_filter.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/all_zero_digital_filter.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** all_zero_digital_filter.h 12 Oct 2016 12:14:38 -0000 1.4 --- all_zero_digital_filter.h 24 Oct 2016 08:20:30 -0000 1.5 *************** *** 58,68 **** public: // ! StoredSignals() {} // ! ~StoredSignals() {} // ! void Clear() { std::fill(signals_.begin(), signals_.end(), 0.0); } private: --- 58,72 ---- public: // ! StoredSignals() { ! } // ! ~StoredSignals() { ! } // ! void Clear() { ! std::fill(signals_.begin(), signals_.end(), 0.0); ! } private: *************** *** 88,101 **** // ! virtual ~AllZeroDigitalFilter() {} // ! int GetNumFilterOrder() const { return num_filter_order_; } // ! bool GetTranspositionFlag() const { return transposition_; } // ! bool IsValid() const { return is_valid_; } // --- 92,112 ---- // ! virtual ~AllZeroDigitalFilter() { ! } // ! int GetNumFilterOrder() const { ! return num_filter_order_; ! } // ! bool GetTranspositionFlag() const { ! return transposition_; ! } // ! bool IsValid() const { ! return is_valid_; ! } // Index: cepstrum_to_minimum_phase_impulse_response.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/cepstrum_to_minimum_phase_impulse_response.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** cepstrum_to_minimum_phase_impulse_response.h 12 Oct 2016 12:14:38 -0000 1.5 --- cepstrum_to_minimum_phase_impulse_response.h 24 Oct 2016 08:20:30 -0000 1.6 *************** *** 66,79 **** // ! virtual ~CepstrumToMinimumPhaseImpulseResponse() {} // ! int GetNumInputOrder() const { return num_input_order_; } // ! int GetNumOutputOrder() const { return num_output_order_; } // ! bool IsValid() const { return is_valid_; } // --- 66,86 ---- // ! virtual ~CepstrumToMinimumPhaseImpulseResponse() { ! } // ! int GetNumInputOrder() const { ! return num_input_order_; ! } // ! int GetNumOutputOrder() const { ! return num_output_order_; ! } // ! bool IsValid() const { ! return is_valid_; ! } // Index: input_source_interpolation.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/input_source_interpolation.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** input_source_interpolation.h 12 Oct 2016 12:14:38 -0000 1.4 --- input_source_interpolation.h 24 Oct 2016 08:20:30 -0000 1.5 *************** *** 61,71 **** // ! virtual ~InputSourceInterpolation() {} // ! int GetFramePeriod() const { return frame_period_; } // ! int GetInterpolationPeriod() const { return interpolation_period_; } // --- 61,76 ---- // ! virtual ~InputSourceInterpolation() { ! } // ! int GetFramePeriod() const { ! return frame_period_; ! } // ! int GetInterpolationPeriod() const { ! return interpolation_period_; ! } // *************** *** 75,79 **** // ! bool IsValid() const { return is_valid_; } // --- 80,86 ---- // ! bool IsValid() const { ! return is_valid_; ! } // |