From f6c8492cf83a184cfb2e3cb5d2aa8f0eaf64e89f Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Sun, 23 Mar 2025 18:22:10 +0100 Subject: [PATCH] add raw avi profile --- src/main.rs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/main.rs b/src/main.rs index 5b49d41..4bfc098 100644 --- a/src/main.rs +++ b/src/main.rs @@ -779,5 +779,14 @@ const PROFILES: &[(&str, &[ProfileDef])] = &[ aoptions: &[], } }, + ProfileDef { + name: "raw", + profile: EncodingProfile { + vname: "rawvideo-ms", + voptions: &[], + aname: "pcm", + aoptions: &[], + } + }, ]), ]; -- 2.39.5