diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-05-16 16:17:41 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-05-16 16:17:41 +0200 |
commit | e556121ec15698cb57e59ae76d00a467b7716916 (patch) | |
tree | 1731fddeacf22df087e253f7519f5a864cd17123 | |
parent | 986d2f6ec04a55678335cb3d7f2c2de84594d760 (diff) | |
download | ffmpeg-e556121ec15698cb57e59ae76d00a467b7716916.tar.gz |
lavfi/aevalsrc: correct the supported sample format
The source supports *planar* double, fix regression introduced by me in
4d4098da.
-rw-r--r-- | libavfilter/asrc_aevalsrc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/asrc_aevalsrc.c b/libavfilter/asrc_aevalsrc.c index db6c205c8c..6c9022bb65 100644 --- a/libavfilter/asrc_aevalsrc.c +++ b/libavfilter/asrc_aevalsrc.c @@ -185,7 +185,7 @@ static int config_props(AVFilterLink *outlink) static int query_formats(AVFilterContext *ctx) { EvalContext *eval = ctx->priv; - enum AVSampleFormat sample_fmts[] = { AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_NONE }; + enum AVSampleFormat sample_fmts[] = { AV_SAMPLE_FMT_DBLP, AV_SAMPLE_FMT_NONE }; int64_t chlayouts[] = { eval->chlayout, -1 }; int sample_rates[] = { eval->sample_rate, -1 }; |