diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-12-11 21:15:19 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-12-11 22:04:00 +0100 |
commit | 431dcc49d2dca8e01e766a4a36e3aa6becbaeb55 (patch) | |
tree | 62196623be12bb2857c6d0a594589cbb36732be2 /libswresample/swresample_internal.h | |
parent | 5a5d70748c5d606b055fedce30a84e31790d6d15 (diff) | |
download | ffmpeg-431dcc49d2dca8e01e766a4a36e3aa6becbaeb55.tar.gz |
swr: make realloc_audio() available outside swresample.c
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/swresample_internal.h')
-rw-r--r-- | libswresample/swresample_internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libswresample/swresample_internal.h b/libswresample/swresample_internal.h index 6d607e5d18..c4a660fd97 100644 --- a/libswresample/swresample_internal.h +++ b/libswresample/swresample_internal.h @@ -141,6 +141,7 @@ struct Resampler { extern struct Resampler const swri_resampler; +int swri_realloc_audio(AudioData *a, int count); int swri_resample_int16(struct ResampleContext *c, int16_t *dst, const int16_t *src, int *consumed, int src_size, int dst_size, int update_ctx); int swri_resample_int32(struct ResampleContext *c, int32_t *dst, const int32_t *src, int *consumed, int src_size, int dst_size, int update_ctx); int swri_resample_float(struct ResampleContext *c, float *dst, const float *src, int *consumed, int src_size, int dst_size, int update_ctx); |