1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-03 01:31:53 +02:00

fourcc: add AV1

This commit is contained in:
Tristan Matthews 2016-08-21 13:25:10 -04:00
parent 749293fb35
commit 2e4b77a7b0
2 changed files with 3 additions and 0 deletions

View File

@ -117,6 +117,7 @@
#define VLC_CODEC_VP7 VLC_FOURCC('V','P','7','0')
#define VLC_CODEC_VP8 VLC_FOURCC('V','P','8','0')
#define VLC_CODEC_VP9 VLC_FOURCC('V','P','9','0')
#define VLC_CODEC_AV1 VLC_FOURCC('a','v','1','0')
#define VLC_CODEC_JPEG2000 VLC_FOURCC('J','P','2','K')
#define VLC_CODEC_LAGARITH VLC_FOURCC('L','A','G','S')
#define VLC_CODEC_FLASHSV2 VLC_FOURCC('F','S','V','2')

View File

@ -506,6 +506,8 @@ static const staticentry_t p_list_video[] = {
B(VLC_CODEC_VP9, "Google/On2's VP9 Video"),
A("VP90"),
B(VLC_CODEC_AV1, "AOMedia's AV1 Video"),
A("av10"),
/* Xiph.org theora */
B(VLC_CODEC_THEORA, "Xiph.org's Theora Video"),