summaryrefslogtreecommitdiff
path: root/gst/matroska/matroska-mux.c
diff options
context:
space:
mode:
authorSean DuBois <sean@siobud.com>2017-12-13 09:22:17 +0000
committerEdward Hervey <bilboed@bilboed.com>2017-12-15 18:00:31 +0100
commitde8f080a5c04db505dd754820aea1fc479302ee8 (patch)
tree35ac08a6d5d80b8ddf8012256b823c12884161e1 /gst/matroska/matroska-mux.c
parent3464aac3c9802eff32ce86b29c1f02ab316c5d99 (diff)
Add AV1 to matroska plugin
https://bugzilla.gnome.org/show_bug.cgi?id=784160
Diffstat (limited to 'gst/matroska/matroska-mux.c')
-rw-r--r--gst/matroska/matroska-mux.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gst/matroska/matroska-mux.c b/gst/matroska/matroska-mux.c
index 7ae340a6f..fd09e2ef0 100644
--- a/gst/matroska/matroska-mux.c
+++ b/gst/matroska/matroska-mux.c
@@ -1210,6 +1210,8 @@ skip_details:
gst_matroska_mux_set_codec_id (context, GST_MATROSKA_CODEC_ID_VIDEO_VP8);
} else if (!strcmp (mimetype, "video/x-vp9")) {
gst_matroska_mux_set_codec_id (context, GST_MATROSKA_CODEC_ID_VIDEO_VP9);
+ } else if (!strcmp (mimetype, "video/x-av1")) {
+ gst_matroska_mux_set_codec_id (context, GST_MATROSKA_CODEC_ID_VIDEO_AV1);
} else if (!strcmp (mimetype, "video/mpeg")) {
gint mpegversion;