Skip to content

Commit

Permalink
upgrade to 6.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sdcb committed Mar 22, 2024
1 parent 768d176 commit 9861d93
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/Sdcb.FFmpeg.AutoGen/Generator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,9 @@ public void WriteExportFunctions(string outputFile)

public void WriteInlineFunctions(string outputFile)
{
var existingInlineFunctionMap = ExistingInlineFunctions.ToDictionary(x => x.Name);
Dictionary<string, InlineFunctionDefinition> existingInlineFunctionMap = ExistingInlineFunctions
.GroupBy(x => x.Name)
.ToDictionary(x => x.Key, v => v.First());
WriteInternal(outputFile,
(units, writer) =>
{
Expand Down
4 changes: 2 additions & 2 deletions src/Sdcb.FFmpeg.NuGetBuilder/PackageInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public static class PackageInfo
{
public const string Version = "6.1.0";
public const string Version = "6.1.1";

public const string Url = $"https://www.gyan.dev/ffmpeg/builds/ffmpeg-release-full-shared.7z";
public const string Url = $"https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2024-03-21-12-56/ffmpeg-n6.1.1-25-g888602001f-win64-gpl-shared-6.1.zip";
}

0 comments on commit 9861d93

Please sign in to comment.