diff options
author | Nuo Mi <nuomi2021@gmail.com> | 2023-03-21 16:01:15 +0100 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2023-06-29 14:12:50 -0300 |
commit | dfc62fd1c6da6429bbd0eb3cbb6f3804e8fcb8ae (patch) | |
tree | 9460010ea3dbec6f3b318c811875c08460047f2a /libavcodec/Makefile | |
parent | 136e96a8a896b04724bcb991c5eb2943d101aa51 (diff) | |
download | ffmpeg-dfc62fd1c6da6429bbd0eb3cbb6f3804e8fcb8ae.tar.gz |
avcodec/cbs: add cbs implementation for H266/VVC
Add CodedBitstreamContext to parse VPS,SPS,PPS in VVC nal units.
Implement parsing and writing of SPS,PPS,VPS,PH,AUD,SEI and slices.
Add ff_cbs_type_h266 to cbs types tables and AV_CODEC_ID_H266
to cbs codec ids.
Co-authored-by: Thomas Siedel <thomas.ff@spin-digital.com>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 0e4d27f37b..a0ebb15a2c 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -76,6 +76,7 @@ OBJS-$(CONFIG_CBS) += cbs.o cbs_bsf.o OBJS-$(CONFIG_CBS_AV1) += cbs_av1.o OBJS-$(CONFIG_CBS_H264) += cbs_h2645.o cbs_sei.o h2645_parse.o OBJS-$(CONFIG_CBS_H265) += cbs_h2645.o cbs_sei.o h2645_parse.o +OBJS-$(CONFIG_CBS_H266) += cbs_h2645.o cbs_sei.o h2645_parse.o OBJS-$(CONFIG_CBS_JPEG) += cbs_jpeg.o OBJS-$(CONFIG_CBS_MPEG2) += cbs_mpeg2.o OBJS-$(CONFIG_CBS_VP9) += cbs_vp9.o |