IPCamAppBar/IPCamLib/FFMPEG/ScalingQuality.cs

15 lines
300 B
C#

/*
* 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
}
}