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

  • libsrt : Pass the correct pointer for the passphrase

    13 juillet 2018, par Sven Dueking
    libsrt: Pass the correct pointer for the passphrase
    
    The passphrase field is a pointer already.
    
    Bug-Id: https://github.com/Haivision/srt/issues/416
    
    • [DBH] libavformat/libsrt.c
  • libfdk-aac : Use enum names instead of literal numbers for the output format

    5 juillet 2018, par Martin Storsjö
    libfdk-aac: Use enum names instead of literal numbers for the output format
    
    Signed-off-by: Martin Storsjö <martin@martin.st>
    
    • [DBH] libavcodec/libfdk-aacenc.c
  • qsvenc : use the compression_level to replace private option

    8 juin 2018, par Zhong Li
    qsvenc: use the compression_level to replace private option
    
    Use a common way to control target_usage, keeping consistent with vaapi
    encoders. The private option preset is kept only for compatibility.
    
    Signed-off-by: Zhong Li <zhong.li@intel.com>
    Signed-off-by: Maxym Dmytrychenko <maxim.d33@gmail.com>
    
    • [DBH] libavcodec/qsvenc.c
  • qsvenc : remove vcm option on Linux

    7 juin 2018, par Zhong Li
    qsvenc: remove vcm option on Linux
    
    1. vcm mode is only available for H264.
    2. vcm is not supported on Linux, but it is shown when run "./avconv -h
    encoder=h264_qsv |grep vcm". This shouldn't happen.
    
    Signed-off-by: Zhong Li <zhong.li@intel.com>
    Signed-off-by: Maxym Dmytrychenko <maxim.d33@gmail.com>
    
    • [DBH] libavcodec/qsvenc.h
    • [DBH] libavcodec/qsvenc_h264.c
  • configure : fix inline asm checks

    30 mai 2018, par John Cox
    configure: fix inline asm checks
    
    Commit 8c893aa3cd5 removed quotes that were required to detect
    inline asm:
    
    check_insn armv5te qadd r0, r0, r0
    .../test.c:1:34: error: expected string literal in 'asm'
    void foo(void){ __asm__ volatile(qadd r0, r0, r0); }
    
    The correct code is:
    
    void foo(void){ __asm__ volatile("qadd r0, r0, r0"); }
    
    Commit message written by Frank Liberato <liberato@chromium.org>
    
    Signed-off-by: Martin Storsjö <martin@martin.st>
    
    • [DBH] configure