#ifndef RESAMPLER_SINC_RESAMPLER_STEREO_H
#define RESAMPLER_SINC_RESAMPLER_STEREO_H
#include <sys/types.h>
#include <unistd.h>
#include "SincResampler.h"
#include "ResamplerDefinitions.h"
namespace RESAMPLER_OUTER_NAMESPACE::resampler {
class SincResamplerStereo : public SincResampler {
public:
explicit SincResamplerStereo(const MultiChannelResampler::Builder &builder);
virtual ~SincResamplerStereo() = default;
void writeFrame(const float *frame) override;
void readFrame(float *frame) override;
};
}
#endif