You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pa-calculator/libs/getLoudness/win32/getLoudness.h

26 lines
630 B
C

//
// Academic License - for use in teaching, academic research, and meeting
// course requirements at degree granting institutions only. Not for
// government, commercial, or other organizational use.
//
// getLoudness.h
//
// Code generation for function 'getLoudness'
//
#ifndef GETLOUDNESS_H
#define GETLOUDNESS_H
// Include files
#include "rtwtypes.h"
#include "coder_array.h"
#include <cstddef>
#include <cstdlib>
// Function Declarations
extern void getLoudness(const coder::array<float, 2U> &data, float fs,
coder::array<float, 2U> &loudness);
#endif
// End of code generation (getLoudness.h)