mbox series

[FFmpeg-devel,0/2] lavfi/drawutils: improve colorspace support

Message ID pull.33.ffstaging.FFmpeg.1654192626.ffmpegagent@gmail.com
Headers show
Series lavfi/drawutils: improve colorspace support | expand

Message

Aman Karmani June 2, 2022, 5:57 p.m. UTC
This introduces ff_draw_init2, adding support for colorspaces other than
BT601 and explicit full/limited range configuration.

rcombs (2):
  lavfi/colorspace: add ff_matrix_mul_3x3_vec
  lavfi/drawutils: improve colorspace support

 libavfilter/colorspace.c                      |  11 +
 libavfilter/colorspace.h                      |   1 +
 libavfilter/drawutils.c                       |  84 +--
 libavfilter/drawutils.h                       |  26 +-
 tests/ref/fate/filter-chromashift-smear       |  10 +-
 tests/ref/fate/filter-chromashift-wrap        |  10 +-
 tests/ref/fate/filter-decimate                | 480 +++++++++---------
 tests/ref/fate/filter-fps-down                |  22 +-
 tests/ref/fate/filter-fps-down-eof-pass       |  22 +-
 tests/ref/fate/filter-fps-down-round-down     |  20 +-
 tests/ref/fate/filter-fps-down-round-up       |  22 +-
 tests/ref/fate/filter-fps-start-drop          |  12 +-
 tests/ref/fate/filter-fps-start-fill          |  12 +-
 tests/ref/fate/filter-fps-up                  |  28 +-
 tests/ref/fate/filter-fps-up-round-down       |  28 +-
 tests/ref/fate/filter-fps-up-round-up         |  28 +-
 tests/ref/fate/filter-framerate-12bit-down    | 100 ++--
 tests/ref/fate/filter-framerate-12bit-up      | 120 ++---
 tests/ref/fate/filter-framerate-down          |   2 +-
 tests/ref/fate/filter-framerate-up            |  20 +-
 .../filter-metadata-signalstats-yuv420p10     |   2 +-
 tests/ref/fate/filter-minterpolate-down       |   2 +-
 tests/ref/fate/filter-minterpolate-up         |  20 +-
 tests/ref/fate/filter-mpdecimate              |  40 +-
 tests/ref/fate/filter-overlay_yuv420p10       |   6 +-
 tests/ref/fate/filter-overlay_yuv422p10       |   6 +-
 tests/ref/fate/filter-pixfmts-pad             |  84 +--
 tests/ref/fate/filter-pixfmts-tinterlace_pad  |  22 +-
 tests/ref/fate/filter-testsrc2-yuv420p        | 140 ++---
 tests/ref/fate/filter-testsrc2-yuv444p        | 140 ++---
 tests/ref/fate/filter-tpad-add                |   4 +-
 tests/ref/fate/filter-tpad-clone              |   8 +-
 tests/ref/fate/filter-unsharp-yuv420p10       |  40 +-
 tests/ref/fate/filter-untile                  |  16 +-
 34 files changed, 819 insertions(+), 769 deletions(-)


base-commit: c6364b711bad1fe2fbd90e5b2798f87080ddf5ea
Published-As: https://github.com/ffstaging/FFmpeg/releases/tag/pr-ffstaging-33%2Frcombs%2Fdrawutils-v1
Fetch-It-Via: git fetch https://github.com/ffstaging/FFmpeg pr-ffstaging-33/rcombs/drawutils-v1
Pull-Request: https://github.com/ffstaging/FFmpeg/pull/33