Changes between Version 23 and Version 24 of Video_Users_Guide


Ignore:
Timestamp:
Nov 1, 2011 10:22:39 AM (12 years ago)
Author:
nanang
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Video_Users_Guide

    v23 v24  
    8787Windows requirements: 
    8888 1. The components in [#reqdesk common requirements] above. 
     89    Here are sample steps for building SDL, libx264, and ffmpeg: 
     90   a. SDL 1.3 comes with VS project settings, e.g: for VS2005 just open {{{VisualC\SDL_VS2005.sln}}} and build. 
     91   a. Get [http://www.mingw.org/wiki/MSYS MSYS|MinGW] for building libx264 and ffmpeg, and also its [http://www.mingw.org/wiki/InstallationHOWTOforMinGW gcc compiler suite].  Note that it is recommended to use gcc 4 or above to build ffmpeg. 
     92   a. libx264 (optional if H264 is wanted): 
     93      {{{ 
     94       $ ./configure                   # add any options if needed, e.g: optimization, install dir, search path 
     95       $ make && make install-lib-dev  # default install dir is /usr/local 
     96      }}} 
     97   a. ffmpeg: 
     98      {{{ 
     99       $ ./configure --enable-gpl --enable-libx264 \ 
     100                     --enable-shared --disable-static \ 
     101                     --enable-memalign-hack  # add other options if needed 
     102       $ make && make install 
     103      }}} 
    89104 1. !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: 
    90105   a. If you don't need Windows 7 features, the recommended SDK is [http://www.microsoft.com/downloads/en/details.aspx?FamilyID=ff6467e6-5bba-4bf5-b562-9199be864d29 Windows SDK Update for Windows Vista]. This is because it doesn't have [wiki:FAQ#vs2008 IP Helper API header bug].