This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avfilter/vf_mix: use av_sscanf()
tags/n4.2
Paul B Mahol
6 years ago
parent
9b2c325060
commit
2de165a92b
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavfilter/vf_mix.c
+ 1
- 1
libavfilter/vf_mix.c
View File
@@ -108,7 +108,7 @@ static av_cold int init(AVFilterContext *ctx)
break;
p = NULL;
sscanf(arg, "%f", &s->weights[i]);
av_
sscanf(arg, "%f", &s->weights[i]);
s->wfactor += s->weights[i];
last = i;
}
Write
Preview
Loading…
Cancel
Save