BDInfoSettings.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. 
  2. namespace BDInfo
  3. {
  4. class BDInfoSettings
  5. {
  6. public static bool GenerateStreamDiagnostics
  7. {
  8. get
  9. {
  10. return true;
  11. }
  12. }
  13. public static bool EnableSSIF
  14. {
  15. get
  16. {
  17. return true;
  18. }
  19. }
  20. public static bool AutosaveReport
  21. {
  22. get
  23. {
  24. return false;
  25. }
  26. }
  27. public static bool GenerateFrameDataFile
  28. {
  29. get
  30. {
  31. return false;
  32. }
  33. }
  34. public static bool FilterLoopingPlaylists
  35. {
  36. get
  37. {
  38. return true;
  39. }
  40. }
  41. public static bool FilterShortPlaylists
  42. {
  43. get
  44. {
  45. return false;
  46. }
  47. }
  48. public static int FilterShortPlaylistsValue
  49. {
  50. get
  51. {
  52. return 0;
  53. }
  54. }
  55. public static bool UseImagePrefix
  56. {
  57. get
  58. {
  59. return false;
  60. }
  61. }
  62. public static string UseImagePrefixValue
  63. {
  64. get
  65. {
  66. return null;
  67. }
  68. }
  69. /// <summary>
  70. /// Setting this to false throws an IComparer error on some discs.
  71. /// </summary>
  72. public static bool KeepStreamOrder
  73. {
  74. get
  75. {
  76. return true;
  77. }
  78. }
  79. public static bool GenerateTextSummary
  80. {
  81. get
  82. {
  83. return false;
  84. }
  85. }
  86. public static string LastPath
  87. {
  88. get
  89. {
  90. return string.Empty;
  91. }
  92. }
  93. }
  94. }