2
0

BDInfoSettings.cs 1.9 KB

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