summaryrefslogtreecommitdiff
path: root/libswresample/swresample_internal.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-02-27 19:20:43 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-02-27 19:20:43 +0100
commit4d00860ac79780cd6f8154f14666ddc437f0499c (patch)
treea7f31879f6a96e92dd1d09c348802be5a911b249 /libswresample/swresample_internal.h
parentbf6102044d47d2ea7b27d861672c046a32a1427b (diff)
downloadffmpeg-4d00860ac79780cd6f8154f14666ddc437f0499c.tar.gz
swresample: Add prefix to soxr_resampler
also move declaration to header Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/swresample_internal.h')
-rw-r--r--libswresample/swresample_internal.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libswresample/swresample_internal.h b/libswresample/swresample_internal.h
index 3e733368b0..77ec9bb1bb 100644
--- a/libswresample/swresample_internal.h
+++ b/libswresample/swresample_internal.h
@@ -88,6 +88,7 @@ struct Resampler {
};
extern struct Resampler const swri_resampler;
+extern struct Resampler const swri_soxr_resampler;
struct SwrContext {
const AVClass *av_class; ///< AVClass used for AVOption and av_log()
@@ -200,4 +201,5 @@ void swri_audio_convert_init_x86(struct AudioConvert *ac,
enum AVSampleFormat out_fmt,
enum AVSampleFormat in_fmt,
int channels);
+
#endif