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,
|
2020-02-05 18:57:20 -05:00
|
|
|
|
GIF = 3
|
2019-03-15 12:48:34 -04:00
|
|
|
|
}
|
|
|
|
|
}
|