1. 14 4月, 2018 1 次提交
  2. 13 4月, 2018 1 次提交
  3. 12 4月, 2018 1 次提交
  4. 04 4月, 2018 1 次提交
  5. 02 4月, 2018 1 次提交
  6. 01 4月, 2018 1 次提交
  7. 29 3月, 2018 4 次提交
  8. 24 3月, 2018 1 次提交
  9. 18 3月, 2018 3 次提交
    • M
      fate/hapqa_extract : add test for hapqa_extract bsf · b2bb1cb6
      Martin Vignali 提交于
      test extract color and alpha
      with the three main kind of hap frame :
      - no snappy compression
      - snappy compression and one chunk
      - snappy compression and several chunks (16 here)
      
      like the bsf filter need to be used with vtag and encoder edition
      also test the information of the target mov for color and alpha
      b2bb1cb6
    • W
      lavu/frame: add QP side data · 4b86ac27
      wm4 提交于
      This adds a way for an API user to transfer QP data and metadata without
      having to keep the reference to AVFrame, and without having to
      explicitly care about QP APIs. It might also provide a way to finally
      remove the deprecated QP related fields. In the end, the QP table should
      be handled in a very similar way to e.g. AV_FRAME_DATA_MOTION_VECTORS.
      
      There are two side data types, because I didn't care about having to
      repack the QP data so the table and the metadata are in a single
      AVBufferRef. Otherwise it would have either required a copy on decoding
      (extra slowdown for something as obscure as the QP data), or would have
      required making intrusive changes to the codecs which support export of
      this data.
      
      The new side data types are added under deprecation guards, because I
      don't intend to change the status of the QP export as being deprecated
      (as it was before this patch too).
      4b86ac27
    • M
      fate/hapenc : remove test which use libsnappy · 32dbee44
      Martin Vignali 提交于
      the test in none mode can be let (they don't use libsnappy)
      32dbee44
  10. 16 3月, 2018 1 次提交
  11. 14 3月, 2018 1 次提交
  12. 13 3月, 2018 1 次提交
  13. 08 3月, 2018 2 次提交
  14. 03 3月, 2018 1 次提交
  15. 27 2月, 2018 1 次提交
  16. 25 2月, 2018 1 次提交
  17. 24 2月, 2018 1 次提交
  18. 22 2月, 2018 2 次提交
  19. 19 2月, 2018 1 次提交
  20. 18 2月, 2018 1 次提交
  21. 17 2月, 2018 1 次提交
  22. 13 2月, 2018 2 次提交
  23. 11 2月, 2018 2 次提交
  24. 02 2月, 2018 1 次提交
  25. 29 1月, 2018 1 次提交
    • M
      avfilter/vf_framerate: change blend factor precision · 2cbe6bac
      Marton Balint 提交于
      This is done mainly in preparation for the SIMD patches.
      
      - for the 8-bit input, decrease the blend factor precision to 7-bit.
      - for the 16-bit input, increase the blend factor precision to 15-bit.
      - make sure the blend functions are not called with 0 or maximum blending
        factors, because we don't want the signed factor integers to overflow.
      
      Fate test changes are due to different rounding.
      Signed-off-by: NMarton Balint <cus@passwd.hu>
      2cbe6bac
  26. 28 1月, 2018 1 次提交
  27. 21 1月, 2018 1 次提交
  28. 19 1月, 2018 1 次提交
  29. 13 1月, 2018 1 次提交
    • M
      avfilter/vf_framerate: simplify filter · 0c31a387
      Marton Balint 提交于
      The framerate filter was quite convoluted with some filter_frame /
      request_frame logic bugs. It seemed easier to rewrite the whole filter_frame /
      request_frame part and also the frame interpolation ratio calculation part in
      one step.
      
      Notable changes:
      - The filter now only stores 2 frames instead of 3
      - filter_frame outputs all the frames it can to be able to handle consecutive
        filter_frame calls which previously caused early drops of buffered frames.
      - because of this, request_frame is largely simplified and it only outputs
        frames on flush. Previously consecuitve request_frame calls could cause the
        filter to think it is in flush mode filling its buffer with the same frames
        causing a "ghost" effect on the output.
      - PTS discontinuities are handled better
      - frames with unknown PTS values are now dropped
      
      Fixes ticket #4870.
      Probably fixes ticket #5493.
      Signed-off-by: NMarton Balint <cus@passwd.hu>
      0c31a387
  30. 06 1月, 2018 1 次提交
  31. 05 1月, 2018 1 次提交