]> git.sesse.net Git - ffmpeg/commit
avcodec/nvdec: Explicitly mark codecs that support 444 output formats
authorPhilip Langdale <philipl@overt.org>
Sun, 7 Oct 2018 03:20:58 +0000 (20:20 -0700)
committerPhilip Langdale <philipl@overt.org>
Sat, 16 Feb 2019 16:47:36 +0000 (08:47 -0800)
commit83c7ac2e47efd96927127c1c385cdbb5fb53cb02
tree81acf95f1623d5d1d15e4d282a4d15f472499b77
parente06ccfbe1d33c00d6f1df202a514219c7fdb7c03
avcodec/nvdec: Explicitly mark codecs that support 444 output formats

With the introduction of HEVC 444 support, we technically have two
codecs that can handle 444 - HEVC and MJPEG. In the case of MJPEG,
it can decode, but can only output one of the semi-planar formats.

That means we need additional logic to decide whether to use a
444 output format or not.
libavcodec/nvdec.c
libavcodec/nvdec.h
libavcodec/nvdec_h264.c
libavcodec/nvdec_hevc.c
libavcodec/nvdec_mjpeg.c
libavcodec/nvdec_mpeg12.c
libavcodec/nvdec_mpeg4.c
libavcodec/nvdec_vc1.c
libavcodec/nvdec_vp8.c
libavcodec/nvdec_vp9.c