mbox series

[FFmpeg-devel,v4,0/6] Add support for Closed Caption FIFO

Message ID 1682699871-22331-1-git-send-email-dheitmueller@ltnglobal.com
Headers show
Series Add support for Closed Caption FIFO | expand

Message

Devin Heitmueller April 28, 2023, 4:37 p.m. UTC
This updated series includes fixes for feedback by Lance Wang, as well
as a second set of inject/extract functions that let you pass the
raw CC bytes as opposed to an AVFrame.  This is used by the last
patch in the series to playout e608 packets with the decklink output.

Devin Heitmueller (6):
  ccfifo: Properly handle CEA-708 captions through framerate conversion
  vf_fps: properly preserve CEA-708 captions
  yadif: Properly preserve CEA-708 closed captions
  tinterlace: Properly preserve CEA-708 closed captions
  vf_ccrepack: Add new filter to repack CEA-708 side data
  decklink_enc: add support for playout of 608 captions in MOV files

 doc/filters.texi              |  10 ++
 libavdevice/Makefile          |   1 +
 libavdevice/ccfifo.c          |  24 +++++
 libavdevice/decklink_common.h |   3 +
 libavdevice/decklink_enc.cpp  |  66 ++++++++++++
 libavdevice/decklink_enc_c.c  |   2 +-
 libavfilter/Makefile          |   2 +
 libavfilter/allfilters.c      |   1 +
 libavfilter/ccfifo.c          | 240 ++++++++++++++++++++++++++++++++++++++++++
 libavfilter/ccfifo.h          |  94 +++++++++++++++++
 libavfilter/tinterlace.h      |   2 +
 libavfilter/vf_bwdif.c        |   7 ++
 libavfilter/vf_ccrepack.c     | 100 ++++++++++++++++++
 libavfilter/vf_fps.c          |   9 +-
 libavfilter/vf_tinterlace.c   |   9 ++
 libavfilter/vf_yadif.c        |   6 ++
 libavfilter/vf_yadif_cuda.c   |   8 ++
 libavfilter/yadif.h           |   2 +
 libavfilter/yadif_common.c    |   5 +
 19 files changed, 589 insertions(+), 2 deletions(-)
 create mode 100644 libavdevice/ccfifo.c
 create mode 100644 libavfilter/ccfifo.c
 create mode 100644 libavfilter/ccfifo.h
 create mode 100644 libavfilter/vf_ccrepack.c