Commit 0c7fb6e4 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/af_adelay: use av_sscanf()

parent a5b28b27
......@@ -19,6 +19,7 @@
*/
#include "libavutil/avstring.h"
#include "libavutil/eval.h"
#include "libavutil/opt.h"
#include "libavutil/samplefmt.h"
#include "avfilter.h"
......@@ -149,9 +150,9 @@ static int config_input(AVFilterLink *inlink)
p = NULL;
ret = sscanf(arg, "%d%c", &d->delay, &type);
ret = av_sscanf(arg, "%d%c", &d->delay, &type);
if (ret != 2 || type != 'S') {
sscanf(arg, "%f", &delay);
av_sscanf(arg, "%f", &delay);
d->delay = delay * inlink->sample_rate / 1000.0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment