-
Notifications
You must be signed in to change notification settings - Fork 15
Getting Started Windows
This page describes how to use Microsoft Visual Studio to build pjsip libraries:
Note: You can also build for Windows using GNU tools such mingw. Follow the steps in Getting Started: Building with GNU Tools/Autoconf. Also note that video feature is currently only supported on Microsoft Visual Studio build tools because some video components, e.g: DirectShow video capture device, can only be built using Visual Studio and Windows SDK.
Note: We don't provide DLL projects for Windows, but please see Building Dynamic Link Libraries page in PJLIB documentation on how to build these DLL yourself.
- Get the source code, if you haven't already.
- It is important that you create a config_site.h as described in Build Preparation
The Visual Studio based project files can be used with one of the following tools:
-
Microsoft Visual Studio 6,(no longer supported since 2.0) Microsoft Visual Studio .NET 2002,Microsoft Visual Studio .NET 2003,- Microsoft Visual Studio/C++ 2005 (including Express edition),
- Microsoft Visual Studio 2008. You may need to fix the IP Helper API header bug. Follow the instructions for Visual Studio 2005.
- Microsoft Visual Studio 2012. Tested on Professional version, untested on Express version.
- Note: Microsoft Visual Studio 2010 is currently unsupported. - This is because Visual Studio 2010 importer for our VS2005 solution files is broken. Use Visual Studio 2012 instead. - Workaround tips: #1 #2
- Microsoft Visual Studio 2015.
In addition, the following SDK's are needed:
-
Essential for other than Windows 8/Visual Studio 2012: DirectX SDK (tested with DirectX version 8 and 9). After installing DirectX, add the paths to the include files and the library to Visual Studio.
-
Optional if not using Visual Studio 2008: Platform SDK (tested with Platform SDK for Windows Server 2003 SP1).
-
Optional: OpenSSL development kit is needed if TLS support is wanted. Learn more: Installing OpenSSL Libraries on Windows.
Note: The new Platform SDK is still needed for Visual Studio 6, although VS6 comes with its own Platform SDK. The new Platform SDK is needed for Iphlpapi.h for the new PJNATH library.
-
DirectShow SDK, included in Windows SDK. The minimum component required within the SDK is Windows Development Headers and Libraris and Samples. As there are several versions of SDK we found they have different issues: a. If you don't need Windows 7 features, the recommended SDK is Windows SDK Update for Windows Vista. This is because it doesn't have IP Helper API header bug. a. If you need Windows 7 features then use Windows SDK for Windows 7 and .NET Framework 4 and follow the instructions on fixing IP Helper API header bug. Also if you are using Visual Studio 2005 then you will need to patch it using MS Knowledge Base 949009
-
SDL version 2.0
- SDL sources comes with VS project settings, under
VisualC
sub-directory
- SDL sources comes with VS project settings, under
-
libyuv (Recommended): Follow the instructions in ticket #1937 (or ticket #1776 for version before 2.5.5). Alternatively, you can use ffmpeg as explained below.
-
OpenH264 (Recommended): Follow the instructions in ticket #1947 (or ticket #1758 for version before 2.6). Alternatively, you can use ffmpeg as explained below.
-
ffmpeg development library. ffmpeg is used for format conversion and video manipulation; as well as video codecs: H.264 (together with libx264) and H263P/H263-1998. So, if you already use libyuv AND OpenH264, and you don't need H.263, then this is optional. We tested with ffmpeg version 1.x (1.2.5) to 0.x (from 0.5.1 (from circa 2009) to 0.10). Since #1897 we have added support for ffmpeg 2.8, however note that on applying the ticket, older ffmpeg will no longer be supported.
- Note that for H.264 support, you need newer releases (October 2011 onwards), and it needs libz too.
- You may be able to use the binary distributions (such as from Zeranoe - get the 'dev' builds). It compiles fine, however we haven't tested them thoroughly.
- Otherwise, get MSYS|MinGW for building libx264 and ffmpeg, and also its gcc compiler suite. Note:
- It is recommended to use gcc 4 or above to build ffmpeg.
- To avoid problems, put MSYS, libx264, and ffmpeg in folders that do not contain space, e.g:
C:\msys, C:\devlib\ffmpeg
. - To use ffmpeg with VS,
inttypes.h
andstdint.h
will be needed, check here.
- In MSYS, build with at least:
$ ./configure --enable-shared --disable-static --enable-memalign-hack # add other options if needed, e.g: optimization, install dir, search path # particularly CFLAGS and LDFLAGS for x264 # to enable H264, add "--enable-gpl --enable-libx264" $ make && make install
-
Optional for H.264: libx264. We tested with the latest from git (as of October 2011). In MSYS console:
$ ./configure --enable-static # add options if needed, e.g: optimization, install dir, search path $ make && make install-lib-static # default install dir is /usr/local
-
Optional: Qt development SDK for building the video GUI sample. We tested with version 4.6 or later.
- without this you can still enjoy video with pjsua console application
-
Add include and library paths for the required components: a. DirectShow SDK a. SDL a. OpenH264 a. libyuv (only if using PJSIP 2.5.1 or older, it is bundled in PJSIP package since 2.5.5)
-
Add these to your
config_site.h
:#define PJMEDIA_HAS_VIDEO 1 #define PJMEDIA_HAS_OPENH264_CODEC 1 #define PJMEDIA_HAS_LIBYUV 1 #define PJMEDIA_VIDEO_DEV_HAS_SDL 1 #define PJMEDIA_VIDEO_DEV_HAS_DSHOW 1
-
For ffmpeg (optional): add the include and library paths, also add this to your
config_site.h
:#define PJMEDIA_HAS_FFMPEG 1
For the host, the following are required:
- Windows NT, 2000, XP, 2003, Vista, Windows 7, Windows 10, or later ,
- Windows 95/98 should work too, but this has not been tested,
- Sufficient amount of RAM for the build process.
Follow the steps below to build the libraries/application using Visual Studio:
-
For Visual Studio 6/2002/2003: open(No longer supported since pjsip 2.0)pjproject.dsw
workspace file. - For Visual Studio 8 (VS 2005): open
pjproject-vs8.sln
solution file. - For Visual Studio 9 (VS 2008): open
pjproject-vs8.sln
solution file. One-time conversion of projects to VS 2008 format will done automatically. - For Visual Studio 11 (VS 2012): open
pjproject-vs8.sln
solution file. One-time conversion of projects to VS 2012 format will done automatically. 1. Warnings about Windows Mobile projects/configurations can be safely ignored, VS 2012 does not support Windows Mobile 1. Additional tips from pjsip mailing list - For Visual Studio 14 (VS 2015): open
pjproject-vs14.sln
solution file. - Set pjsua as Active or Startup Project.
- Set Win32 as the platform.
- Select Debug or Release build as appropriate.
- Build the project. This will build pjsua application and all libraries needed by pjsua.
- After successful build, the pjsua application will be placed in pjsip-apps/bin directory, and the libraries in lib directory under each projects.
To build the samples:
- (Still using the same workspace)
- Set samples project as Active Project
- Select Debug or Release build as appropriate. See Visual Studio Build Configuration page for explanation of each provided build configuration
- Build the project. This will build all sample applications and all libraries needed.
- After successful build, the sample applications will be placed in pjsip-apps/bin/samples directory, and the libraries in lib directory under each projects.
Sample applications are built using Samples.mak makefile, therefore it is difficult to setup debugging session in Visual Studio for these applications. To solve this issue, the pjsip_apps workspace contain one project called sample_debug which can be used to debug a sample application.
To setup debugging using sample_debug project:
- Set sample_debug project as Active Project
- Edit debug.c file inside this project.
- Modify the #include line to include the particular sample application to debug
- Select Debug build.
- Build and debug the project.
-
Put these include directories in the include search path of your project:
- pjlib/include
- pjlib-util/include
- pjnath/include
- pjmedia/include
- pjsip/include
-
Put the combined library directory lib (located in the root directory of pjproject source code) in the library search path 3. Include the relevant PJ header files in the application source file. For example, using these would include ALL APIs exported by PJ:
#include <pjlib.h> #include <pjlib-util.h> #include <pjnath.h> #include <pjsip.h> #include <pjsip_ua.h> #include <pjsip_simple.h> #include <pjsua-lib/pjsua.h> #include <pjmedia.h> #include <pjmedia-codec.h>
(Note: the documentation of the relevant libraries should say which header files should be included to get the declaration of the APIs).
-
Declare PJ_WIN32=1 macro in the project settings (declaring the macro in the source file may not be sufficient).
- For Windows Mobile applications build with Visual C++, we need to declare PJ_WIN32_WINCE=1 macro in the project settings.
-
Link with the main pjproject library
libpjproject
. It includes all the libraries provided. Note: the actual library names will be appended with the target name and the build configuration. For example: The actual library names will look like libpjproject-i386-win32-vc6-debug.lib depending on whether we are building the Debug or Release version of the library. -
Link with system specific libraries such as: wsock32.lib, ws2_32.lib, ole32.lib, dsound.lib
-
If you want to use video API see Video User's Guide
Please see this page for troubleshooting crash problem on Win32.
Please see this page to make PJSIP works on Windows 95 and windows 98.
HOME
Datasheet
FAQ
Getting Started:
- Download
- Preparations
- Android
- iOS
- Mac OS
- Windows
- Linux/Unix
- Other platforms
- Historic
Features Guide:
- Video
- Media:
- NAT Traversal
- SIP
Troubleshooting
- NAT problems
- Audio problems
License