[vlc-commits] [Git][videolan/vlc][master] gstdecode: add AV1
Hugo Beauzée-Luyssen (@chouquette)
gitlab at videolan.org
Wed Feb 9 08:00:34 UTC 2022
Hugo Beauzée-Luyssen pushed to branch master at VideoLAN / VLC
Commits:
58202004 by Tristan Matthews at 2022-02-09T07:36:48+00:00
gstdecode: add AV1
- - - - -
1 changed file:
- modules/codec/gstreamer/gstdecode.c
Changes:
=====================================
modules/codec/gstreamer/gstdecode.c
=====================================
@@ -380,6 +380,9 @@ static GstStructure* vlc_to_gst_fmt( const es_format_t *p_fmt )
case VLC_CODEC_VP9:
p_str = gst_structure_new_empty( "video/x-vp9" );
break;
+ case VLC_CODEC_AV1:
+ p_str = gst_structure_new_empty( "video/x-av1" );
+ break;
case VLC_CODEC_MPGV:
p_str = gst_structure_new_empty( "video/mpeg" );
gst_structure_set( p_str, "mpegversion", G_TYPE_INT, 2,
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/58202004426ce9ac2d8e32ede722a3353a5cbad1
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/58202004426ce9ac2d8e32ede722a3353a5cbad1
You're receiving this email because of your account on code.videolan.org.
More information about the vlc-commits
mailing list