You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rtpengine/lib/resample.h

14 lines
242 B

#ifndef _RESAMPLE_H_
#define _RESAMPLE_H_
#include "codeclib.h"
#include <libavutil/frame.h>
AVFrame *resample_frame(resample_t *resample, AVFrame *frame, const format_t *to_format);
void resample_shutdown(resample_t *resample);
#endif