From 71a1f76d3cc937fc1a47f501fc4866f95b74d0b0 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 2 May 2012 00:48:44 +0200 Subject: [PATCH] swr: update double precision checks for our resampler It supports double precision since a while Signed-off-by: Michael Niedermayer --- libswresample/swresample.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libswresample/swresample.c b/libswresample/swresample.c index ba3d7e3193..f0a6f0e87b 100644 --- a/libswresample/swresample.c +++ b/libswresample/swresample.c @@ -231,8 +231,9 @@ int swr_init(struct SwrContext *s){ if( s->int_sample_fmt != AV_SAMPLE_FMT_S16P && s->int_sample_fmt != AV_SAMPLE_FMT_S32P && s->int_sample_fmt != AV_SAMPLE_FMT_FLTP + && s->int_sample_fmt != AV_SAMPLE_FMT_DBLP && s->resample){ - av_log(s, AV_LOG_ERROR, "Resampling only supported with internal s16/s32/flt\n"); + av_log(s, AV_LOG_ERROR, "Resampling only supported with internal s16/s32/flt/dbl\n"); return -1; }