1. 12 Feb, 2018 1 commit
  2. 11 Feb, 2018 10 commits
  3. 06 Feb, 2018 4 commits
  4. 04 Feb, 2018 2 commits
  5. 01 Feb, 2018 1 commit
  6. 31 Jan, 2018 1 commit
  7. 26 Jan, 2018 1 commit
    • Zhong Li's avatar
      qsvdec: Relax the surface vs coded dimension check · 6829a079
      Zhong Li authored
      Fix a common vp8 decoding failure.
      
      Many vp8 clips cannot decode if hw_frames_ctx is enabled, reporting
      "Error during QSV decoding.: incompatible video parameters (-14)".
      
      It is due to mfx.FrameInfo.Width/Height not matching coded_w/coded_h.
      
      See: avconv -hwaccel qsv -init_hw_device qsv -c:v vp8_qsv -i vp8-test-vectors-r1/vp80-00-comprehensive-001.ivf
      -vf "hwdownload,format=nv12" -pix_fmt yuv420p -f md5 -
      Signed-off-by: 's avatarZhong Li <zhong.li@intel.com>
      Signed-off-by: 's avatarLuca Barbato <lu_zero@gentoo.org>
      6829a079
  8. 25 Jan, 2018 1 commit
  9. 24 Jan, 2018 1 commit
  10. 16 Jan, 2018 1 commit
  11. 08 Jan, 2018 1 commit
  12. 04 Jan, 2018 1 commit
  13. 01 Jan, 2018 1 commit
  14. 29 Dec, 2017 2 commits
  15. 27 Dec, 2017 1 commit
  16. 20 Dec, 2017 1 commit
  17. 19 Dec, 2017 9 commits
  18. 14 Dec, 2017 1 commit
    • wm4's avatar
      avcodec: add metadata to identify wrappers and hardware decoders · 47687a2f
      wm4 authored
      Explicitly identify decoder/encoder wrappers with a common name. This
      saves API users from guessing by the name suffix. For example, they
      don't have to guess that "h264_qsv" is the h264 QSV implementation, and
      instead they can just check the AVCodec .codec and .wrapper_name fields.
      
      Explicitly mark AVCodec entries that are hardware decoders or most
      likely hardware decoders with new AV_CODEC_CAPs. The purpose is allowing
      API users listing hardware decoders in a more generic way. The proposed
      AVCodecHWConfig does not provide this information fully, because it's
      concerned with decoder configuration, not information about the fact
      whether the hardware is used or not.
      
      AV_CODEC_CAP_HYBRID exists specifically for QSV, which can have software
      implementations in case the hardware is not capable.
      
      Based on a patch by Philip Langdale <philipl@overt.org>.
      Signed-off-by: 's avatarLuca Barbato <lu_zero@gentoo.org>
      47687a2f