1. 03 Aug, 2019 3 commits
  2. 02 Aug, 2019 4 commits
  3. 01 Aug, 2019 2 commits
  4. 31 Jul, 2019 8 commits
  5. 30 Jul, 2019 4 commits
  6. 29 Jul, 2019 15 commits
  7. 28 Jul, 2019 4 commits
    • Mark Thompson's avatar
      lavfi: addroi filter · 20fed2f0
      Mark Thompson authored
      This can be used to add region of interest side data to video frames.
      20fed2f0
    • Mark Thompson's avatar
      vaapi_encode: Add ROI support · 33871478
      Mark Thompson authored
      33871478
    • Shiyou Yin's avatar
      avcodec/mips: [loongson] refine process of setting block as 0 in h264dsp_mmi. · 62e6b634
      Shiyou Yin authored
      In function ff_h264_add_pixels4_8_mmi, there is no need to reset '%[ftmp0]'
      to 0, because it's value has never changed since the start of the asm block.
      This patch remove the redundant 'xor' and set src to zero once it was loaded.
      
      In function ff_h264_idct_add_8_mmi, 'block' is seted to zero twice.
      This patch removed the first setting zero operation and move the second one
      after the load operation of block.
      
      In function ff_h264_idct8_add_8_mmi, 'block' is seted to zero twice too.
      This patch just removed the second setting zero operation.
      
      This patch mainly simplifies the implementation of functions above,
      the effect on the performance of whole h264 decoding process is not obvious.
      According to the perf data, proportion of ff_h264_idct_add_8_mmi decreased from
      0.29% to 0.26% and ff_h264_idct8_add_8_mmi decreased from 0.62% to 0.59% when decoding
      H264 format on loongson 3A3000(For reference only , not very stable.).
      Reviewed-by: 's avatarReimar Döffinger <Reimar.Doeffinger@gmx.de>
      Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
      62e6b634
    • Andreas Rheinhardt's avatar
      vp9_metadata: Improve spec-compliance and warnings · abb2e9ac
      Andreas Rheinhardt authored
      The earlier version had three deficits:
      1. It allowed to set the stream to RGB although this is not allowed when
      the profile is 0 or 2.
      2. If it set the stream to RGB, then it did not automatically set the
      range to full range; the result was that one got a warning every time a
      frame with color_config element was processed if the frame originally
      had TV range and the user didn't explicitly choose PC range. Now one
      gets only one warning in such a situation.
      3. Intra-only frames in profile 0 are automatically BT.601, but if the
      user wished another color space, he was not informed about his wishes
      being unfulfillable.
      
      The commit also improves the documentation about this.
      Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
      abb2e9ac