IPCamAppBar/IPCamLib/FFMPEG/ScalingPolicy.cs

14 lines
284 B
C#

/*
* Source code originally from RtspClientSharp's player example:
* https://github.com/BogdanovKirill/RtspClientSharp
*/
// ReSharper disable All
namespace IPCamLib.FFMPEG
{
internal enum ScalingPolicy
{
Auto,
Stretch,
RespectAspectRatio
}
}