mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-28 17:51:05 +00:00
avfilter/af_adelay: use av_sscanf()
This commit is contained in:
parent
a5b28b271a
commit
0c7fb6e4a0
@ -19,6 +19,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "libavutil/avstring.h"
|
#include "libavutil/avstring.h"
|
||||||
|
#include "libavutil/eval.h"
|
||||||
#include "libavutil/opt.h"
|
#include "libavutil/opt.h"
|
||||||
#include "libavutil/samplefmt.h"
|
#include "libavutil/samplefmt.h"
|
||||||
#include "avfilter.h"
|
#include "avfilter.h"
|
||||||
@ -149,9 +150,9 @@ static int config_input(AVFilterLink *inlink)
|
|||||||
|
|
||||||
p = NULL;
|
p = NULL;
|
||||||
|
|
||||||
ret = sscanf(arg, "%d%c", &d->delay, &type);
|
ret = av_sscanf(arg, "%d%c", &d->delay, &type);
|
||||||
if (ret != 2 || type != 'S') {
|
if (ret != 2 || type != 'S') {
|
||||||
sscanf(arg, "%f", &delay);
|
av_sscanf(arg, "%f", &delay);
|
||||||
d->delay = delay * inlink->sample_rate / 1000.0;
|
d->delay = delay * inlink->sample_rate / 1000.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user