-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minor improvements and speedups in deps.sh #112
base: master
Are you sure you want to change the base?
Conversation
Decoder currently requires absolute frame and keyframe ids but the system was providing relative frame ids
This copy was causing performance regressions on previous benchmarks
Looks good! Would you mind rebasing this onto current master? |
It should be rebased already. |
echo "$lib is not installed. abort" | ||
exit 1 | ||
fi | ||
done |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One issue with this check is that a user might have installed some of these dependencies without using the package manager. Having this hard failure here would cause an issue in that case. Perhaps change this to print a warning instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes I agree. Maybe we can seperate the library check on dependency basis? For instance, we only check libjpeg-dev
etc if the user wants to install OpenCV?
6822cde
to
5d4d222
Compare
--depth 1
to reduce downloading time (ffmpeg's git server return error with depth, switch to the official Github mirror.)