# HG changeset patch
# User Wuzzy <Wuzzy2@mail.ru>
# Date 1547768208 -3600
# Node ID 92ebe33c5eb6cd4a2bffd8b14f2712469c114f3f
# Parent  957db6db1a49247319bb99466e184a31b6d2efdb
VideoRec: Hide libaom-av1 codec in frontend, it's experimental

diff -r 957db6db1a49 -r 92ebe33c5eb6 QTfrontend/util/LibavInteraction.cpp
--- a/QTfrontend/util/LibavInteraction.cpp	Fri Jan 18 00:17:17 2019 +0100
+++ b/QTfrontend/util/LibavInteraction.cpp	Fri Jan 18 00:36:48 2019 +0100
@@ -103,6 +103,10 @@
         if (strcmp(pCodec->name, "rv10") == 0 || strcmp(pCodec->name, "rv20") == 0)
             continue;
 
+        // this encoder is experimental (as of Jan 17, 2019)
+        if (strcmp(pCodec->name, "libaom-av1") == 0)
+            continue;
+
         // doesn't support stereo sound
         if (strcmp(pCodec->name, "real_144") == 0)
             continue;