RecordOutput.h 724 B

123456789101112131415161718192021222324
  1. /*
  2. This software is subject to the license described in the License.txt file
  3. included with this software distribution. You may not use this file except in compliance
  4. with this license.
  5. Copyright (c) Dynastream Innovations Inc. 2014
  6. All rights reserved.
  7. */
  8. #if !defined (RECORD_OUTPUT_H)
  9. #define RECORD_OUTPUT_H
  10. #include "string.h"
  11. #include "stdlib.h"
  12. #include "math.h"
  13. #include "PowerDecoder.h"
  14. void ResamplerOutput_Init(BPSAMPLER *pstDecoder_, unsigned short usRecordInterval_, double dRecordInterval_, unsigned short usTimeBase_);
  15. void RecordOutput(PowerRecordReceiver powerRecordReceiver_, BPSAMPLER *pstDecoder_);
  16. void RecordOutput_FillGap(PowerRecordReceiver powerRecordReceiver_, BPSAMPLER *pstDecoder_);
  17. #endif