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

  • vp9_superframe_bsf : cache packets by creating new references instead of moving pointers

    5 novembre 2017, par James Almer
    vp9_superframe_bsf: cache packets by creating new references instead of moving pointers
    
    Fixes invalid reads after free.
    
    Signed-off-by: James Almer <jamrial@gmail.com>
    
    • [DBH] libavcodec/vp9_superframe_bsf.c
  • lavc : Mark all AVHWAccel structures as const

    4 novembre 2017, par Mark Thompson
    lavc: Mark all AVHWAccel structures as const
    
    • [DBH] doc/APIchanges
    • [DBH] libavcodec/avcodec.h
    • [DBH] libavcodec/cuvid_h264.c
    • [DBH] libavcodec/cuvid_hevc.c
    • [DBH] libavcodec/decode.c
    • [DBH] libavcodec/dxva2_h264.c
    • [DBH] libavcodec/dxva2_hevc.c
    • [DBH] libavcodec/dxva2_mpeg2.c
    • [DBH] libavcodec/dxva2_vc1.c
    • [DBH] libavcodec/hwaccels.h
    • [DBH] libavcodec/vaapi_h264.c
    • [DBH] libavcodec/vaapi_hevc.c
    • [DBH] libavcodec/vaapi_mpeg2.c
    • [DBH] libavcodec/vaapi_mpeg4.c
    • [DBH] libavcodec/vaapi_vc1.c
    • [DBH] libavcodec/vaapi_vp8.c
    • [DBH] libavcodec/vda_h264.c
    • [DBH] libavcodec/vdpau_h264.c
    • [DBH] libavcodec/vdpau_hevc.c
    • [DBH] libavcodec/vdpau_mpeg12.c
    • [DBH] libavcodec/vdpau_mpeg4.c
    • [DBH] libavcodec/vdpau_vc1.c
    • [DBH] libavcodec/version.h
  • configure : Use right variable and right value for AIX ar flags

    4 novembre 2017, par Diego Biurrun
    configure: Use right variable and right value for AIX ar flags
    
    • [DBH] configure
  • Drop some unnecessary config.h #includes

    3 novembre 2017, par Diego Biurrun
    Drop some unnecessary config.h #includes
    
    • [DBH] libavcodec/thread.h
    • [DBH] libavformat/tls.h
    • [DBH] libavutil/aarch64/cpu.h
    • [DBH] libavutil/arm/cpu.h
    • [DBH] libavutil/cpu_internal.h
    • [DBH] libavutil/ppc/cpu.h
    • [DBH] libavutil/x86/cpu.h
  • libspeexenc : Use speex_lib_get_mode instead of the speex_foo_mode data symbols

    3 novembre 2017, par Martin Storsjö
    libspeexenc: Use speex_lib_get_mode instead of the speex_foo_mode data symbols
    
    This avoids issues linking to a DLL version of libspeex, since the
    libspeex headers lack proper dllimport declarations for the data
    symbols.
    
    This isn't an issue when building with mingw with GNU binutils, since
    GNU ld can fix up that kind of data import automatically.
    
    libspeexdec.c already uses speex_lib_get_mode as well.
    
    Signed-off-by: Martin Storsjö <martin@martin.st>
    
    • [DBH] libavcodec/libspeexenc.c