Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
SDK
/
exoplayer
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
d6244773
authored
Apr 05, 2019
by
andrewlewis
Committed by
Oliver Woodman
Apr 05, 2019
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Add back missing libvpx build instructions
PiperOrigin-RevId: 242094027
parent
9471d611
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
extensions/vp9/README.md
extensions/vp9/README.md
View file @
d6244773
...
...
@@ -34,6 +34,22 @@ VP9_EXT_PATH="${EXOPLAYER_ROOT}/extensions/vp9/src/main"
NDK_PATH="<path to Android NDK>"
```
*
Fetch libvpx:
```
cd "${VP9_EXT_PATH}/jni" && \
git clone https://chromium.googlesource.com/webm/libvpx libvpx
```
*
Checkout the appropriate branch of libvpx (the scripts and makefiles bundled
in this repo are known to work only at specific versions of the library - we
will update this periodically as newer versions of libvpx are released):
```
cd "${VP9_EXT_PATH}/jni/libvpx" && \
git checkout tags/v1.7.0 -b v1.7.0
```
*
Run a script that generates necessary configuration files for libvpx:
```
...
...
@@ -58,6 +74,10 @@ ${NDK_PATH}/ndk-build APP_ABI=all -j4
*
Android config scripts should be re-generated by running
`generate_libvpx_android_configs.sh`
*
Clean and re-build the project.
*
If you want to use your own version of libvpx, place it in
`${VP9_EXT_PATH}/jni/libvpx`
. Please note that
`generate_libvpx_android_configs.sh`
and the makefiles may need to be modified
to work with arbitrary versions of libvpx.
## Using the extension ##
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment