diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-05-28 22:17:01 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-05-28 22:17:05 +0200 |
commit | d187e7616e32353e31c046cd095b19c96073bcad (patch) | |
tree | 44faac1f9a84fda838c3dabc9448f958037844e9 /ffmpeg.c | |
parent | ca7fa3a5167dc480917491bca4a1bc873d24125a (diff) | |
download | ffmpeg-d187e7616e32353e31c046cd095b19c96073bcad.tar.gz |
ffmpeg: use %f instead of %lf in volume args format printf.
%f refers to a double argument already.
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -918,7 +918,7 @@ static int configure_audio_filters(FilterGraph *fg, AVFilterContext **in_filter, if (audio_volume != 256) { char args[256]; - snprintf(args, sizeof(args), "%lf", audio_volume / 256.); + snprintf(args, sizeof(args), "%f", audio_volume / 256.); AUTO_INSERT_FILTER("-vol", "volume", args); } |