Mesen-SX/UI/Config/AviRecordConfig.cs

23 lines
347 B
C#
Raw Normal View History

2019-03-15 12:48:34 -04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mesen.GUI.Config
{
public class AviRecordConfig
{
public VideoCodec Codec = VideoCodec.CSCD;
public UInt32 CompressionLevel = 6;
}
public enum VideoCodec
{
None = 0,
ZMBV = 1,
CSCD = 2,
GIF = 3
2019-03-15 12:48:34 -04:00
}
}