2019-01-13 12:54:44 -07:00
|
|
|
|
2016-10-26 12:29:56 -07:00
|
|
|
namespace BDInfo
|
|
|
|
{
|
|
|
|
class BDInfoSettings
|
|
|
|
{
|
2019-01-13 13:31:14 -07:00
|
|
|
public static bool GenerateStreamDiagnostics => true;
|
2016-10-26 12:29:56 -07:00
|
|
|
|
2019-01-13 13:31:14 -07:00
|
|
|
public static bool EnableSSIF => true;
|
2016-10-26 12:29:56 -07:00
|
|
|
|
2019-01-13 13:31:14 -07:00
|
|
|
public static bool AutosaveReport => false;
|
2016-10-26 12:29:56 -07:00
|
|
|
|
2019-01-13 13:31:14 -07:00
|
|
|
public static bool GenerateFrameDataFile => false;
|
2016-10-26 12:29:56 -07:00
|
|
|
|
2019-01-13 13:31:14 -07:00
|
|
|
public static bool FilterLoopingPlaylists => true;
|
2016-10-26 12:29:56 -07:00
|
|
|
|
2019-01-13 13:31:14 -07:00
|
|
|
public static bool FilterShortPlaylists => false;
|
2016-10-26 12:29:56 -07:00
|
|
|
|
2019-01-13 13:31:14 -07:00
|
|
|
public static int FilterShortPlaylistsValue => 0;
|
2016-10-26 12:29:56 -07:00
|
|
|
|
2019-01-13 13:31:14 -07:00
|
|
|
public static bool UseImagePrefix => false;
|
2016-10-26 12:29:56 -07:00
|
|
|
|
2019-01-13 13:31:14 -07:00
|
|
|
public static string UseImagePrefixValue => null;
|
2016-10-26 12:29:56 -07:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Setting this to false throws an IComparer error on some discs.
|
|
|
|
/// </summary>
|
2019-01-13 13:31:14 -07:00
|
|
|
public static bool KeepStreamOrder => true;
|
2016-10-26 12:29:56 -07:00
|
|
|
|
2019-01-13 13:31:14 -07:00
|
|
|
public static bool GenerateTextSummary => false;
|
2016-10-26 12:29:56 -07:00
|
|
|
|
2019-01-13 13:31:14 -07:00
|
|
|
public static string LastPath => string.Empty;
|
2016-10-26 12:29:56 -07:00
|
|
|
}
|
|
|
|
}
|