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

  • Workaround for FFMS indexing bug

    28 août 2013, par Henrik Gramner
    Workaround for FFMS indexing bug
    
    If FFMS_ReadIndex is used with an empty index file it gets stuck in an infinite loop instead of returning NULL
    like it's supposed to do on failure. Explicitly check if the file is empty before calling it as a workaround.
    
    • [DH] input/ffms.c
  • Fix masked access violation in KERNEL32

    26 août 2013, par Anton Mitrofanov
    Fix masked access violation in KERNEL32
    
    Caused crashes under gdb in Windows and might cause other unknown problems.
    
    • [DH] common/osdep.c
  • Fix GPAC support on Windows

    24 août 2013, par Hiroki Taniura
    Fix GPAC support on Windows
    
    • [DH] output/mp4.c
  • Windows Unicode support

    11 août 2013, par Henrik Gramner
    Windows Unicode support
    
    Windows, unlike most other operating systems, uses UTF-16 for Unicode strings while x264 is designed for UTF-8.
    
    This patch does the following in order to handle things like Unicode filenames:
    * Keep strings internally as UTF-8.
    * Retrieve the CLI command line as UTF-16 and convert it to UTF-8.
    * Always use Unicode versions of Windows API functions and convert strings to UTF-16 when calling them.
    * Attempt to use legacy 8.3 short filenames for external libraries without Unicode support.
    
    • [DH] common/common.c
    • [DH] common/opencl.c
    • [DH] common/osdep.c
    • [DH] common/osdep.h
    • [DH] common/win32thread.c
    • [DH] common/win32thread.h
    • [DH] configure
    • [DH] encoder/encoder.c
    • [DH] encoder/ratecontrol.c
    • [DH] input/avs.c
    • [DH] input/ffms.c
    • [DH] input/raw.c
    • [DH] input/timecode.c
    • [DH] input/y4m.c
    • [DH] output/flv_bytestream.c
    • [DH] output/matroska_ebml.c
    • [DH] output/mp4.c
    • [DH] output/raw.c
    • [DH] x264.c
    • [DH] x264.h
    • [DH] x264cli.h
    • [DH] x264res.rc
  • x86inc : Check for __OUTPUT_FORMAT__ having a value of "x64"

    9 août 2013, par Derek Buitenhuis
    x86inc: Check for __OUTPUT_FORMAT__ having a value of "x64"
    
    This is also a valid value for WIN64.
    
    • [DH] common/x86/x86inc.asm