git.libav.org Git - libav.git/rss log

Libav master git repository

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

Les articles publiés sur le site

  • configure : Don’t add -fPIC to asflags when targeting windows

    12 octobre 2017, par Martin Storsjö
    configure: Don't add -fPIC to asflags when targeting windows
    
    On X86 windows, asflags weren't actually ever used for anything,
    since assembling used x86asflags instead, and that flags list
    had -DPIC already.
    
    This fixes building shared libraries with clang for arm/aarch64
    windows. (This wasn't an issue when in msvc mode before, since
    we don't try to enable pic at all there, since the msvc armasm
    assembler fails on our pic constructs there.)
    
    Signed-off-by: Martin Storsjö <martin@martin.st>
    
    • [DBH] configure
  • configure : Don’t add -fPIC to cflags for target_os=win32

    12 octobre 2017, par Martin Storsjö
    configure: Don't add -fPIC to cflags for target_os=win32
    
    We skipped adding it to cflags for mingw/cygwin configurations
    where the compiler either complains loudly or even errors out;
    do the same for target_os=win32, for the case when building with
    clang in msvc mode.
    
    This wasn't needed for the actual msvc before, since msvc uses
    msvc_common_flags to filter out this flag from cflags.
    When building with clang in msvc mode, no such filter is used.
    
    This fixes building shared libraries with clang in msvc mode.
    
    Signed-off-by: Martin Storsjö <martin@martin.st>
    
    • [DBH] configure
  • configure : Fix stupid typo in gsm.h header name

    11 octobre 2017, par Diego Biurrun
    configure: Fix stupid typo in gsm.h header name
    
    • [DBH] configure
  • mss1 : Add missing macro parameters to ARITH_GET_* macros

    11 octobre 2017, par Diego Biurrun
    mss1: Add missing macro parameters to ARITH_GET_* macros
    
    It is wrong to pass no arguments to a macro that expects one argument
    and some compilers complain.
    
    • [DBH] libavcodec/mss1.c
  • configure : rename hevc_ps to hevcparse

    10 octobre 2017, par James Almer
    configure: rename hevc_ps to hevcparse
    
    Build h2645_parse.o with it, as every hevc_ps dependency also needs it.
    This is more in line with h264's h264parse module.
    
    Signed-off-by: James Almer <jamrial@gmail.com>
    
    • [DBH] configure
    • [DBH] libavcodec/Makefile