VideoRec: Hide libaom-av1 codec in frontend, it's experimental
authorWuzzy <Wuzzy2@mail.ru>
Fri, 18 Jan 2019 00:36:48 +0100
changeset 14631 92ebe33c5eb6
parent 14630 957db6db1a49
child 14632 5132548cdb77
VideoRec: Hide libaom-av1 codec in frontend, it's experimental
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;