[FFmpeg-devel] [PATCH v5 0/1] Add support for H266/VVC encoding

Christian Bartnik chris10317h5 at gmail.com
Wed Jun 5 22:51:45 EEST 2024


This patch is based on the latest patchset from Thomas Siedel
(thomas.ff at spin-digital.com).

The libvvenc patch has been changed with following changes:
  avcodec: add external encoder libvvenc for H266/VVC
- sort includes alphabetically
- remove unneeded cast
- do not separate variables declaration and definition
- change if ((ret = func()) != 0) to: ret = func(); if (ret != 0)
- remove check for correct pix_fmt
- remove call of ff_side_data_set_encoder_stats

Christian Bartnik (1):
  avcodec: add external enc libvvenc for H266/VVC

 configure                 |   4 +
 doc/encoders.texi         |  64 +++++
 fftools/ffmpeg_mux_init.c |   2 +-
 libavcodec/Makefile       |   1 +
 libavcodec/allcodecs.c    |   1 +
 libavcodec/libvvenc.c     | 492 ++++++++++++++++++++++++++++++++++++++
 6 files changed, 563 insertions(+), 1 deletion(-)
 create mode 100644 libavcodec/libvvenc.c

-- 
2.34.1



More information about the ffmpeg-devel mailing list