git.videolan.org Git - x264.git/summary

x264 git repository

http://git.videolan.org/?p=x264.git;a=summary

Les articles publiés sur le site

  • cygwin : Enable MSVS support

    8 août 2015, par Henrik Gramner
    cygwin: Enable MSVS support
    
    `cl -showIncludes` creates absolute Windows paths for some files, attempt
    to convert those to Unix paths.
    
    Use relative paths for dependencies located in or below the working directory
    in order to mimic the behavior of gcc and to make the paths more readable.
    
    Make the dependency generation script a bit more robust in general.
    
    • [DH] configure
    • [DH] tools/msvsdepend.sh
  • cltostr.sh : Minor fixes

    8 août 2015, par Henrik Gramner
    cltostr.sh: Minor fixes
    
    • [DH] tools/cltostr.sh
  • Simplify version.sh

    8 août 2015, par Henrik Gramner
    Simplify version.sh
    
    Also remove some non-POSIX syntax and improve robustness.
    
    As a bonus the script now runs about 2-3 times faster.
    
    `git rev-list --count` could be used to simplify things even further,
    but that functionality was added in git 1.7.2 so keep `wc -l` for now
    to maintain compatibility with older git versions.
    
    • [DH] configure
    • [DH] version.sh
  • msvs : Fix cl detection in non-English environments

    7 août 2015, par 장영훈
    msvs: Fix cl detection in non-English environments
    
    • [DH] configure
  • Simplify inclusion of x264.h in C++ projects

    5 août 2015, par Mark Webster
    Simplify inclusion of x264.h in C++ projects
    
    Name all structs to support forward declarations.
    Add a conditional extern "C" wrapper in x264.h itself instead of having to
    specify it in every location where it's included.
    
    • [DH] x264.h