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

  • Apply zone options a little bit earlier

    23 avril 2016, par Anton Mitrofanov
    Apply zone options a little bit earlier
    
    This way things like SAR changes will have full effect from the start frame.
    
    • [DH] encoder/encoder.c
    • [DH] encoder/ratecontrol.c
    • [DH] encoder/ratecontrol.h
  • Fix corruption when using encoder_reconfig() with some parameters

    23 avril 2016, par Anton Mitrofanov
    Fix corruption when using encoder_reconfig() with some parameters
    
    Changing parameters that affects SPS, like --ref for example, wasn't
    behaving correctly previously.
    
    Probably a regression in r2373.
    
    • [DH] encoder/encoder.c
    • [DH] encoder/set.c
    • [DH] encoder/set.h
  • Clean up header includes

    13 avril 2016, par Anton Mitrofanov
    Clean up header includes
    
    • [DH] common/common.c
    • [DH] common/common.h
    • [DH] common/cpu.c
    • [DH] common/macroblock.c
    • [DH] common/ppc/mc.c
    • [DH] common/ppc/pixel.c
    • [DH] common/ppc/quant.h
    • [DH] common/x86/mc-c.c
    • [DH] encoder/me.h
  • Eliminate some compiler warnings on BSD

    13 avril 2016, par Henrik Gramner
    Eliminate some compiler warnings on BSD
    
    Include <strings.h> in addition to <string.h>. According to the POSIX
    specification the prototypes for strcasecmp() and strncasecmp() are
    declared in <strings.h>. On some systems they are also declared in
    <string.h> for compatibility reasons but we shouldn't rely on that.
    
    Define _POSIX_C_SOURCE only when it's required to do so. Some BSD
    variants doesn't declare certain function prototypes otherwise.
    
    • [DH] common/osdep.h
    • [DH] configure
  • osx : Add -D_DARWIN_C_SOURCE to CFLAGS

    12 avril 2016, par Henrik Gramner
    osx: Add -D_DARWIN_C_SOURCE to CFLAGS
    
    OSX doesn't like _POSIX_C_SOURCE being defined when _DARWIN_C_SOURCE isn't.
    
    • [DH] configure