summaryrefslogtreecommitdiff
path: root/mkvlib/c/sdk.cs
diff options
context:
space:
mode:
authorac79b0c6 <[email protected]>2022-12-31 12:36:28 +0800
committerac79b0c6 <[email protected]>2022-12-31 12:36:28 +0800
commit00c1443dc36f84fc3da8c312823fc29df847a7fc (patch)
treec02f84bf105d39aa111e66573d64ed1d5fb58d1d /mkvlib/c/sdk.cs
parent85e08f0ee477d746ecf57b64ecee530ecc6a61de (diff)
update sdks
Diffstat (limited to 'mkvlib/c/sdk.cs')
-rw-r--r--mkvlib/c/sdk.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mkvlib/c/sdk.cs b/mkvlib/c/sdk.cs
index 87ce7f7..7cc4d90 100644
--- a/mkvlib/c/sdk.cs
+++ b/mkvlib/c/sdk.cs
@@ -40,7 +40,7 @@ public static class mkvlib
static extern bool CreateMKVs(IntPtr vDir, IntPtr sDir, IntPtr fDir, IntPtr tDir, IntPtr oDir, IntPtr slang, IntPtr stitle, bool clean, logCallback lcb);
[DllImport(so)]
- static extern bool MakeMKVs(IntPtr dir, IntPtr data, IntPtr output, IntPtr slang, IntPtr stitle, logCallback lcb);
+ static extern bool MakeMKVs(IntPtr dir, IntPtr data, IntPtr output, IntPtr slang, IntPtr stitle, bool subset, logCallback lcb);
[DllImport(so)]
static extern bool CreateBlankOrBurnVideo(long t, IntPtr s, IntPtr enc, IntPtr ass, IntPtr fontdir, IntPtr output);
@@ -135,9 +135,9 @@ public static class mkvlib
return CreateMKVs(cs(vDir), cs(sDir), cs(fDir), cs(tDir), cs(oDir), cs(slang), cs(stitle), clean, _lcb(lcb));
}
- public static bool MakeMKVs(string dir, string data, string output, string slang, string stitle, Action<LogLevel, string> lcb)
+ public static bool MakeMKVs(string dir, string data, string output, string slang, string stitle, bool subset, Action<LogLevel, string> lcb)
{
- return MakeMKVs(cs(dir), cs(data), cs(output), cs(slang), cs(stitle), _lcb(lcb));
+ return MakeMKVs(cs(dir), cs(data), cs(output), cs(slang), cs(stitle), subset, _lcb(lcb));
}
public static bool CreateBlankOrBurnVideo(long t, string s, string enc, string ass, string fontdir, string output)