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

  • lavc/qsvenc_jpeg : add async_depth support

    11 octobre 2018, par Zhong Li
    lavc/qsvenc_jpeg: add async_depth support
    
    Currently qsv (m)jpeg encoding is broken.
    Regression introducing by the commit(id: c1bcd3): fix async support,
    which requires the minimum async_depth to be 1, instead previous zero.
    But the default async_depth of qsv (m)jpeg encoding is still initialized
    (mostly) as zero.
    
    This patch also abviously improves qsv (m)jpeg encoding performance
    due to the default async_depth is changed to 4.
    
    Signed-off-by: Zhong Li <zhong.li@intel.com>
    Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
    
    • [DBH] libavcodec/qsvenc_jpeg.c
  • avcodec/libaomenc : export the Sequence Header OBU as extradata

    8 octobre 2018, par James Almer
    avcodec/libaomenc: export the Sequence Header OBU as extradata
    
    Signed-off-by: James Almer <jamrial@gmail.com>
    Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
    
    • [DBH] configure
    • [DBH] libavcodec/libaomenc.c
  • lavu/qsv : fix a random hwupload failure regression

    30 septembre 2018, par Zhong Li
    lavu/qsv: fix a random hwupload failure regression
    
    Variable 'ret' hasn't been initialized,thus introducing a random
    hwupload failure regression due to qsv session uninitialized.
    
    Signed-off-by: Zhong Li <zhong.li@intel.com>
    Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
    
    • [DBH] libavutil/hwcontext_qsv.c
  • tests : Drop duplicate variable declaration

    20 septembre 2018, par Diego Biurrun
    tests: Drop duplicate variable declaration
    
    • [DBH] tests/fate-run.sh
  • qsvenc : AV_PIX_FMT_QSV path should release frame

    18 septembre 2018, par Maxym Dmytrychenko
    qsvenc: AV_PIX_FMT_QSV path should release frame
    
    Fixes high memory usage and prevents over allocation of the frames via
    proper unref.
    
    Can be checked as:
    -hwaccel qsv -c:v h264_qsv -i ../h264-conformance/CANL2_Sony_E.jsv -c:v
    h264_qsv -b:v 2000k -y qsv.mp4
    
    • [DBH] libavcodec/qsvenc.c