Poker
3 years ago
No known key found for this signature in database
GPG Key ID: C65A6AD457D5C8F8
2 changed files with
4 additions and
2 deletions
-
src/ImageSharp/Formats/Webp/Lossless/Vp8LEncoder.cs
-
src/ImageSharp/Formats/Webp/Lossy/Vp8Encoder.cs
|
|
|
@ -307,7 +307,8 @@ internal class Vp8LEncoder : IDisposable |
|
|
|
prevPosition = BitWriterBase.WriteAnimationFrame(stream, new() |
|
|
|
{ |
|
|
|
Width = (uint)frame.Width, |
|
|
|
Height = (uint)frame.Height |
|
|
|
Height = (uint)frame.Height, |
|
|
|
Duration = frame.Metadata.GetWebpMetadata().FrameDuration |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -477,7 +477,8 @@ internal class Vp8Encoder : IDisposable |
|
|
|
prevPosition = BitWriterBase.WriteAnimationFrame(stream, new() |
|
|
|
{ |
|
|
|
Width = (uint)frame.Width, |
|
|
|
Height = (uint)frame.Height |
|
|
|
Height = (uint)frame.Height, |
|
|
|
Duration = frame.Metadata.GetWebpMetadata().FrameDuration |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|