mbox series

[FFmpeg-devel,v2,0/2] initial input/output support for AV_PIX_FMT_GBRAPF32

Message ID 20200503231004.47636-1-mindmark@gmail.com
Headers show
Series initial input/output support for AV_PIX_FMT_GBRAPF32 | expand

Message

Mark Reid May 3, 2020, 11:10 p.m. UTC
From: Mark Reid <mindmark@gmail.com>

changes since v1
- added missing fillPlane32 function
- tests should pass now for qemu-mips
- removed exr patch for now

Mark Reid (2):
  libswscale: add input support AV_PIX_FMT_GBRAPF32
  libswscale: add output support for AV_PIX_FMT_GBRAPF32

 libswscale/input.c                       | 91 ++++++++++++++++++++++++
 libswscale/output.c                      | 82 +++++++++++++++++++++
 libswscale/slice.c                       | 28 +++++---
 libswscale/swscale.c                     |  5 ++
 libswscale/swscale_internal.h            | 36 ++++++++++
 libswscale/swscale_unscaled.c            | 33 +++++++++
 libswscale/utils.c                       |  4 ++
 tests/ref/fate/filter-pixdesc-gbrapf32be |  1 +
 tests/ref/fate/filter-pixdesc-gbrapf32le |  1 +
 tests/ref/fate/filter-pixdesc-gbrpf32be  |  1 +
 tests/ref/fate/filter-pixdesc-gbrpf32le  |  1 +
 tests/ref/fate/filter-pixfmts-copy       |  4 ++
 tests/ref/fate/filter-pixfmts-crop       |  4 ++
 tests/ref/fate/filter-pixfmts-field      |  4 ++
 tests/ref/fate/filter-pixfmts-fieldorder |  4 ++
 tests/ref/fate/filter-pixfmts-hflip      |  4 ++
 tests/ref/fate/filter-pixfmts-il         |  4 ++
 tests/ref/fate/filter-pixfmts-null       |  4 ++
 tests/ref/fate/filter-pixfmts-scale      |  4 ++
 tests/ref/fate/filter-pixfmts-transpose  |  4 ++
 tests/ref/fate/filter-pixfmts-vflip      |  4 ++
 21 files changed, 312 insertions(+), 11 deletions(-)
 create mode 100644 tests/ref/fate/filter-pixdesc-gbrapf32be
 create mode 100644 tests/ref/fate/filter-pixdesc-gbrapf32le
 create mode 100644 tests/ref/fate/filter-pixdesc-gbrpf32be
 create mode 100644 tests/ref/fate/filter-pixdesc-gbrpf32le

--
2.25.0

Comments

Michael Niedermayer May 5, 2020, 6:04 p.m. UTC | #1
On Sun, May 03, 2020 at 04:10:02PM -0700, mindmark@gmail.com wrote:
> From: Mark Reid <mindmark@gmail.com>
> 
> changes since v1
> - added missing fillPlane32 function
> - tests should pass now for qemu-mips
> - removed exr patch for now
> 
> Mark Reid (2):
>   libswscale: add input support AV_PIX_FMT_GBRAPF32
>   libswscale: add output support for AV_PIX_FMT_GBRAPF32

will apply

thx

[...]