[FFmpeg-devel] [PATCH v2 00/11] add vvc raw demuxer, muxer, parser, metadata bsf, vvdec decoder

Nuo Mi nuomi2021 at gmail.com
Sat Jan 9 09:34:10 EET 2021



Nuo Mi (11):
  avcodec/vvc: add shared header for vvc
  avcodec: add vvc codec id and profiles
  avformat: add vvc raw demux
  avcodec: add SEI enum for vvc
  avcodec/cbs_h265: fix undef SEI_TYPE_X
  avcodec: add cbs for h266/vvc
  avcodec/h2645_parse: add nal header parser for h266/vvc
  avcodec: add vvc parser
  avformat: add h266/vvc muxer
  avcodec: add vvc metadata bsf
  avcodec: add vvdec H.266/VVC decoder

 configure                             |    9 +-
 libavcodec/Makefile                   |    4 +
 libavcodec/allcodecs.c                |    1 +
 libavcodec/avcodec.h                  |    2 +
 libavcodec/bitstream_filters.c        |    1 +
 libavcodec/cbs.c                      |    6 +
 libavcodec/cbs_h2645.c                |  373 ++++
 libavcodec/cbs_h265_syntax_template.c |    4 +-
 libavcodec/cbs_h266.h                 |  840 ++++++++
 libavcodec/cbs_h266_syntax_template.c | 2761 +++++++++++++++++++++++++
 libavcodec/cbs_internal.h             |    3 +-
 libavcodec/codec_desc.c               |    8 +
 libavcodec/codec_id.h                 |    2 +
 libavcodec/h2645_parse.c              |   74 +-
 libavcodec/libvvdec.cpp               |  244 +++
 libavcodec/parsers.c                  |    1 +
 libavcodec/profiles.c                 |    5 +
 libavcodec/profiles.h                 |    1 +
 libavcodec/vvc.h                      |  124 ++
 libavcodec/vvc_metadata_bsf.c         |  243 +++
 libavcodec/vvc_parser.c               |  289 +++
 libavcodec/vvc_sei.h                  |   47 +
 libavformat/Makefile                  |    2 +
 libavformat/allformats.c              |    2 +
 libavformat/rawenc.c                  |   25 +
 libavformat/vvcdec.c                  |   61 +
 26 files changed, 5126 insertions(+), 6 deletions(-)
 create mode 100644 libavcodec/cbs_h266.h
 create mode 100644 libavcodec/cbs_h266_syntax_template.c
 create mode 100644 libavcodec/libvvdec.cpp
 create mode 100644 libavcodec/vvc.h
 create mode 100644 libavcodec/vvc_metadata_bsf.c
 create mode 100644 libavcodec/vvc_parser.c
 create mode 100644 libavcodec/vvc_sei.h
 create mode 100644 libavformat/vvcdec.c

-- 
2.25.1



More information about the ffmpeg-devel mailing list