Changes between Version 61 and Version 62 of Getting-Started/Windows
- Timestamp:
- Nov 2, 2021 9:21:30 AM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Getting-Started/Windows
v61 v62 76 76 $ make && make install-lib-static # default install dir is /usr/local 77 77 }}} 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 82 Build the static library using Visual Studio solution 83 }}} 78 84 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. 79 85 - without this you can still enjoy video with pjsua console application … … 84 90 a. SDL 85 91 a. OpenH264 92 a. libvpx 86 93 a. libyuv (only if using PJSIP 2.5.1 or older, it is bundled in PJSIP package since 2.5.5) 87 94 1. Add these to your {{{config_site.h}}}: … … 96 103 {{{ 97 104 #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 98 110 }}} 99 111