]> git.nihav.org Git - nihav-encoder.git/commitdiff
add raw avi profile
authorKostya Shishkov <kostya.shishkov@gmail.com>
Sun, 23 Mar 2025 17:22:10 +0000 (18:22 +0100)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Sun, 23 Mar 2025 17:22:10 +0000 (18:22 +0100)
src/main.rs

index 5b49d41c6b6b3b2850f8a5b53887594adb5e6211..4bfc0989d447793a9da1a883851d0c2346a4e1af 100644 (file)
@@ -779,5 +779,14 @@ const PROFILES: &[(&str, &[ProfileDef])] = &[
                 aoptions:   &[],
             }
         },
+         ProfileDef {
+            name:       "raw",
+            profile:    EncodingProfile {
+                vname:      "rawvideo-ms",
+                voptions:   &[],
+                aname:      "pcm",
+                aoptions:   &[],
+            }
+        },
     ]),
 ];