]> git.nihav.org Git - nihav-encoder.git/commitdiff
add a raw profile for MOV muxer
authorKostya Shishkov <kostya.shishkov@gmail.com>
Mon, 30 Mar 2026 13:55:27 +0000 (15:55 +0200)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Mon, 30 Mar 2026 13:55:27 +0000 (15:55 +0200)
src/main.rs

index f9b8ab0c118ceb8be440f7bec5f6f32e9342c62e..61c5b2c4ee854ff71a502bcfc9b4784aa9d76309 100644 (file)
@@ -911,4 +911,16 @@ const PROFILES: &[(&str, &[ProfileDef])] = &[
             }
         },
     ]),
+    ("mov",
+    &[
+        ProfileDef {
+            name:       "raw",
+            profile:    EncodingProfile {
+                vname:      "rawvideo",
+                voptions:   &[("pixfmt", Some("rgb24"))],
+                aname:      "pcm",
+                aoptions:   &[],
+            }
+        },
+    ]),
 ];