BDInfoSettings.cs 859 B

123456789101112131415161718192021222324252627282930313233
  1. namespace BDInfo
  2. {
  3. class BDInfoSettings
  4. {
  5. public static bool GenerateStreamDiagnostics => true;
  6. public static bool EnableSSIF => true;
  7. public static bool AutosaveReport => false;
  8. public static bool GenerateFrameDataFile => false;
  9. public static bool FilterLoopingPlaylists => true;
  10. public static bool FilterShortPlaylists => false;
  11. public static int FilterShortPlaylistsValue => 0;
  12. public static bool UseImagePrefix => false;
  13. public static string UseImagePrefixValue => null;
  14. /// <summary>
  15. /// Setting this to false throws an IComparer error on some discs.
  16. /// </summary>
  17. public static bool KeepStreamOrder => true;
  18. public static bool GenerateTextSummary => false;
  19. public static string LastPath => string.Empty;
  20. }
  21. }