diff options
author | Avi Halachmi (:avih) <avihpit@yahoo.com> | 2018-07-30 22:48:04 +0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2018-10-08 20:56:02 -0300 |
commit | df6e929e89340c2dbb316868c798fce516a2cf79 (patch) | |
tree | 0dd79d338bfff590b4f4d8be040fdd49840d61ff /fftools | |
parent | 42355d12dbfd92b11fa6c28858ea041bcf94bd7b (diff) | |
download | ffmpeg-df6e929e89340c2dbb316868c798fce516a2cf79.tar.gz |
configure: speed up print_enabled_components()
x4 - x10 faster.
Inside print_enabled components, the filter_list case invokes sed
about 350 times to parse the same source file and extract different
info for each arg. This is never instant, and on systems where fork is
slow (notably MSYS2/Cygwin on windows) it takes many seconds.
Change it to use sed once on the source file and set env vars with the
parse results, then use these results inside the loop.
Additionally, the cases of indev_list and outdev_list are very
infrequent, but nevertheless they're faster, and arguably cleaner, with
shell parameter substitutions than with command substitutions.
Tested-by: Michael Niedermayer <michael@niedermayer.cc>
Tested-by: Helmut K. C. Tessarek <tessarek@evermeet.cx>
Tested-by: Dave Yeo <daveryeo@telus.net>
Tested-by: Reino Wijnsma <rwijnsma@xs4all.nl>
Signed-off-by: James Almer <jamrial@gmail.com>
(cherry picked from commit 923586a58f37deedeb01f742e4804bc36736a6bc)
Diffstat (limited to 'fftools')
0 files changed, 0 insertions, 0 deletions