Skip to content
This repository has been archived by the owner on Oct 27, 2022. It is now read-only.

Modernize the tool #12

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ fi
# Check out the pinned libvpx version.
pushd libvpx
git fetch
git checkout --detach e758f9d45704ea0247c1b654f8602c967fa44199
git checkout --detach master
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi, the previous tagged commit is intentional, that way two checkouts get the same version of the library they're comparing. Unfortunately that hash is ancient since I stopped working on this.

If you want to you can update the hash to the current master (so that you can remove the spatial-svc flag below). You can also add a --revision command-line flag so that you could run ./setup.sh --revision=master.


# Build libvpx
./configure --enable-pic --enable-experimental --enable-spatial-svc --enable-multi-res-encoding
./configure --enable-pic --enable-experimental --enable-multi-res-encoding
make -j32