Changes between Initial Version and Version 7 of Ticket #1937


Ignore:
Timestamp:
Jun 29, 2016 3:30:08 AM (8 years ago)
Author:
nanang
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1937

    • Property Status changed from new to closed
    • Property Resolution changed from to fixed
  • Ticket #1937 – Description

    initial v7  
    55 
    66This ticket will add libyuv to the third party folder, use a specific version and include only the necessary source. 
     7 
     8Below is the steps to build and use libyuv: 
     9== For GNU targets == 
     101. By default, libyuv will always be built automatically. This automatic build can be disabled via configure script param {{{--disable-libyuv}}} or {{{--disable-video}}}, also it will not be built when ffmpeg swscale is detected. 
     111. if you want to use external libyuv, specify {{{--with-external-libyuv}}} and set header/library search paths via CFLAGS and LDFLAGS environment variables. 
     12 
     13=== Additional step for iOS targets === 
     141. Add {{{third-party/lib/libyuv-[TARGET].a}}} to application project in XCode. 
     15 
     16== For Visual Studio == 
     171. libyuv will always be built automatically. 
     181. To enable libyuv, add this to your {{{config_site.h}}}: 
     19 {{{ 
     20#define PJMEDIA_HAS_LIBYUV              1 
     21 }}}