2013-10-30 17:07:01 -07:00
|
|
|
/******************************************************************************
|
|
|
|
Copyright (C) 2013 by Hugh Bailey <obs.jim@gmail.com>
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2013-12-02 21:24:38 -08:00
|
|
|
the Free Software Foundation, either version 2 of the License, or
|
2013-10-30 17:07:01 -07:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "../util/c99defs.h"
|
|
|
|
#include "audio-io.h"
|
|
|
|
|
2013-10-31 10:28:47 -07:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2013-10-30 17:07:01 -07:00
|
|
|
struct audio_resampler;
|
2014-09-25 17:44:05 -07:00
|
|
|
typedef struct audio_resampler audio_resampler_t;
|
2013-10-30 17:07:01 -07:00
|
|
|
|
|
|
|
struct resample_info {
|
2019-06-22 22:13:45 -07:00
|
|
|
uint32_t samples_per_sec;
|
|
|
|
enum audio_format format;
|
2013-10-30 17:07:01 -07:00
|
|
|
enum speaker_layout speakers;
|
|
|
|
};
|
|
|
|
|
2019-06-22 22:13:45 -07:00
|
|
|
EXPORT audio_resampler_t *
|
|
|
|
audio_resampler_create(const struct resample_info *dst,
|
|
|
|
const struct resample_info *src);
|
2014-09-25 17:44:05 -07:00
|
|
|
EXPORT void audio_resampler_destroy(audio_resampler_t *resampler);
|
2013-10-30 17:07:01 -07:00
|
|
|
|
2014-09-25 17:44:05 -07:00
|
|
|
EXPORT bool audio_resampler_resample(audio_resampler_t *resampler,
|
2019-06-22 22:13:45 -07:00
|
|
|
uint8_t *output[], uint32_t *out_frames,
|
|
|
|
uint64_t *ts_offset,
|
|
|
|
const uint8_t *const input[],
|
|
|
|
uint32_t in_frames);
|
2013-10-31 10:28:47 -07:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|