Skip to content
Snippets Groups Projects
Commit 60c58cee authored by Steve Lhomme's avatar Steve Lhomme Committed by Jean-Baptiste Kempf
Browse files

avcodec/chroma: map VLC_CODEC_VUYA to AV_PIX_FMT_VUYX

It is (at least) part of FFmpeg 6.1 and can be used as DXVA/QSV output.
parent 9cbc2ff2
No related branches found
No related tags found
1 merge request!5309avcodec/chroma: map VLC_CODEC_VUYA to AV_PIX_FMT_VUYX
Pipeline #464571 passed with warnings with stages
in 56 minutes and 29 seconds
......@@ -121,6 +121,10 @@ static const struct
{VLC_CODEC_UYVY, AV_PIX_FMT_UYVY422, COLOR_RANGE_UNDEF },
{VLC_CODEC_YVYU, AV_PIX_FMT_YVYU422, COLOR_RANGE_UNDEF },
#if LIBAVUTIL_VERSION_INT >= AV_VERSION_INT(57, 34, 100)
{VLC_CODEC_VUYA, AV_PIX_FMT_VUYX, COLOR_RANGE_UNDEF },
#endif
/* Packed RGB formats */
{VLC_CODEC_RGB233, AV_PIX_FMT_RGB8, COLOR_RANGE_UNDEF },
{VLC_CODEC_BGR233, AV_PIX_FMT_BGR8, COLOR_RANGE_UNDEF },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment