You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
431 B
17 lines
431 B
# Script to download AV1 Codec Library's source code
|
|
|
|
# Exports SOURCES_DIR_libaom - path where actual sources are stored
|
|
|
|
# TODO Consider using a specific git tag (like v1.0.0-errata1) for reproducible builds
|
|
|
|
echo "Using aom master branch"
|
|
AOM_SOURCES=aom
|
|
if [[ ! -d "$AOM_SOURCES" ]]; then
|
|
git clone https://aomedia.googlesource.com/aom
|
|
fi
|
|
|
|
cd aom
|
|
git pull origin master
|
|
cd ..
|
|
|
|
export SOURCES_DIR_libaom=$(pwd)/${AOM_SOURCES}
|
|
|