Changes between Initial Version and Version 7 of Ticket #2253


Ignore:
Timestamp:
Feb 5, 2020 4:13:26 AM (4 years ago)
Author:
nanang
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2253

    • Property Owner set to ming
    • Property Status changed from new to closed
    • Property Resolution changed from to fixed
  • Ticket #2253 – Description

    initial v7  
    66{{{[2]}}} [https://www.streamingmedia.com/Articles/ReadArticle.aspx?ArticleID=111334] 
    77 
    8 Steps to use VP8/VP9: 
    9 Download [https://www.webmproject.org/code/ libvpx]. Build and install. Libvpx will then be autodetected by PJSIP configure script (alternatively, you can specify --with-vpx option). 
     8== Steps to use VP8/VP9 == 
     9 1. Download [https://www.webmproject.org/code/ libvpx]. 
     10 2. Build and install. General build steps can be found in libvpx `README` file. 
     11    - For Android, these steps can be used: 
     12      {{{ 
     13export NDK=/path/to/Android-NDK 
     14export HOST_TAG=linux-x86_64 # adjust to your building host 
     15 
     16export TOOLCHAIN=$NDK/toolchains/llvm/prebuilt/$HOST_TAG 
     17export AR=$TOOLCHAIN/bin/aarch64-linux-android-ar 
     18export AS=$TOOLCHAIN/bin/aarch64-linux-android-as 
     19export CC=$TOOLCHAIN/bin/aarch64-linux-android21-clang 
     20export CXX=$TOOLCHAIN/bin/aarch64-linux-android21-clang++ 
     21export LD=$TOOLCHAIN/bin/aarch64-linux-android-ld 
     22export RANLIB=$TOOLCHAIN/bin/aarch64-linux-android-ranlib 
     23export STRIP=$TOOLCHAIN/bin/aarch64-linux-android-strip 
     24 
     25./configure --target=arm64-android-gcc --enable-pic --disable-examples \ 
     26            --disable-tools --disable-docs --enable-realtime-only \ 
     27            --disable-install-bins --disable-unit-tests --disable-webm-io \ 
     28            --disable-libyuv \ 
     29            --prefix=/path/to/target/installation 
     30      }}} 
     31 3. Libvpx will then be autodetected by PJSIP configure script (alternatively, you can specify --with-vpx option). 
     32