Update dependencies.

This commit is contained in:
2024-04-30 04:43:24 +01:00
parent b238ff9bf8
commit 51ac29c6de
3 changed files with 3 additions and 3 deletions

View File

@@ -10,7 +10,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SharpAvi" Version="2.1.1" />
<PackageReference Include="SharpAvi" Version="3.0.1" />
</ItemGroup>
<ItemGroup>

View File

@@ -76,7 +76,7 @@ namespace Aaru.VideoNow
};
IAviVideoStream videoStream = aviWriter.AddVideoStream(144, 80, BitsPerPixel.Bpp24);
videoStream.Codec = KnownFourCCs.Codecs.Uncompressed;
videoStream.Codec = CodecIds.Uncompressed;
IAviAudioStream audioStream = aviWriter.AddAudioStream(2, 17640, 8);
fs.Position = framePosition;

View File

@@ -162,7 +162,7 @@ namespace Aaru.VideoNow
};
IAviVideoStream videoStream = aviWriter.AddVideoStream(144, 80, BitsPerPixel.Bpp24);
videoStream.Codec = KnownFourCCs.Codecs.Uncompressed;
videoStream.Codec = CodecIds.Uncompressed;
IAviAudioStream audioStream = aviWriter.AddAudioStream(2, 17784, 8);
fs.Position = framePosition;