IPCamAppBar/IPCamLib/FFMPEG/ScalingQuality.cs

15 lines
300 B
C#
Raw Normal View History

2021-07-13 16:09:03 +00:00
/*
* Source code originally from RtspClientSharp's player example:
* https://github.com/BogdanovKirill/RtspClientSharp
*/
// ReSharper disable All
namespace IPCamLib.FFMPEG
{
internal enum ScalingQuality
{
Nearest,
Bilinear,
FastBilinear,
Bicubic
}
}