Changes between Version 61 and Version 62 of Getting-Started/Windows


Ignore:
Timestamp:
Nov 2, 2021 9:21:30 AM (2 years ago)
Author:
riza
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Getting-Started/Windows

    v61 v62  
    7676$ make && make install-lib-static  # default install dir is /usr/local 
    7777      }}} 
     78 1. Optional for libvpx: [https://www.webmproject.org/code/ libvpx], supported since #2253. In MSYS console: 
     79     {{{ 
     80$ ./configure --target=x86-win32-vs15 --disable-examples --disable-docs --disable-tools --disable-examples --enable-static --enable-vp8 --enable-vp9 --enable-static-msvcrt  # add options if needed, e.g: optimization, install dir, search path 
     81$ make    #Generate Visual Studio solution 
     82Build the static library using Visual Studio solution 
     83      }}} 
    7884 1. Optional: [http://qt-project.org/downloads/ Qt development SDK] for building the [wiki:Video_Users_Guide#vidgui video GUI sample]. We tested with version 4.6 or later. 
    7985    - without this you can still enjoy video with pjsua console application 
     
    8490    a. SDL 
    8591    a. OpenH264 
     92    a. libvpx 
    8693    a. libyuv (only if using PJSIP 2.5.1 or older, it is bundled in PJSIP package since 2.5.5) 
    8794 1. Add these to your {{{config_site.h}}}: 
     
    96103{{{ 
    97104#define PJMEDIA_HAS_FFMPEG              1 
     105}}} 
     106 1. For libvpx (optional): add the include and library paths, also add this to your {{{config_site.h}}}: 
     107{{{ 
     108#define PJMEDIA_HAS_VPX_CODEC           1    //by default VP8 codec is enabled 
     109#define PJMEDIA_HAS_VPX_CODEC_VP9       1    //enable VP9 codec 
    98110}}} 
    99111