mbox series

[FFmpeg-devel,v3,0/2] avfilter: Add fsync filter

Message ID 20231216081322.53623-1-thilo.borgmann@mail.de
Headers show
Series avfilter: Add fsync filter | expand

Message

Thilo Borgmann Dec. 16, 2023, 8:13 a.m. UTC
Synchronize video frames with an external mapping from a file.
Follows up on the idea in https://lists.ffmpeg.org/pipermail/ffmpeg-devel/2023-January/305986.html implemented as a filter.

Not storing the frame map in a probably huge string but buffering
piece-wise. Using a fixed format string. Passthrough for all pixel
formats.

Thilo Borgmann (2):
  avfilter: Add fsync filter
  fate: Add fsync filter tests

 Changelog                        |   1 +
 MAINTAINERS                      |   1 +
 configure                        |   2 +
 doc/filters.texi                 |  33 ++++
 libavfilter/Makefile             |   1 +
 libavfilter/allfilters.c         |   1 +
 libavfilter/version.h            |   2 +-
 libavfilter/vf_fsync.c           | 286 +++++++++++++++++++++++++++++++
 tests/Makefile                   |   6 +-
 tests/fate/filter-video.mak      |   6 +
 tests/maps/fsync-down            |   7 +
 tests/maps/fsync-up              |  57 ++++++
 tests/ref/fate/filter-fsync-down |  12 ++
 tests/ref/fate/filter-fsync-up   |  62 +++++++
 14 files changed, 475 insertions(+), 2 deletions(-)
 create mode 100644 libavfilter/vf_fsync.c
 create mode 100644 tests/maps/fsync-down
 create mode 100644 tests/maps/fsync-up
 create mode 100644 tests/ref/fate/filter-fsync-down
 create mode 100644 tests/ref/fate/filter-fsync-up