home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 November / PCWorld_2006-11_cd.bin / audio-video / zoomplayer / zp500p8std.exe / zplayer.zdf < prev    next >
Text File  |  2005-04-13  |  4KB  |  107 lines

  1. // The "ZPLAYER.ZDF" file is a Definition file which instructs Zoom Player
  2. // which settings should be saved to a "DF" file when the "fnSaveDF"
  3. // function is called, or when a DVD is set to Auto-Save a definition
  4. // file for a disc.
  5. //
  6. // Oh, and this isn't a sample file, this file is being looked at when
  7. // the "fnSaveDF" function is called.
  8. //
  9. // The following functions can be used:
  10. //
  11. // SaveBlanking
  12. //   - This function will save the blanking position.
  13. //
  14. // SaveCustomAR
  15. //   - This function will save the Custom Aspect Ratio values, useful
  16. //     in combination with the "SaveAspectRatio" function.
  17. //
  18. // SavePlacement
  19. //   - This function will save the position of the video in zoomed mode.
  20. //
  21. // SaveAspectRatio
  22. //   - This function will save the aspect ratio of the video.
  23. //
  24. // SaveOverlayColorControls
  25. //   - This function will save the overlay color control settings.
  26. //
  27. // SaveVMR9ColorControls
  28. //   - This function will save the VMR9 color control settings.
  29. //
  30. // SaveVolume
  31. //   - This function will save the audio volume.
  32. //
  33. // SaveBalance
  34. //   - This function will save the audio balance.
  35. //
  36. // SaveAudioSync
  37. //   - This function will save the audio synchronization offset.
  38. //
  39. // SaveEQ
  40. //   - This function will save the Equalizer Values.
  41. //
  42. // SavePreAmp
  43. //   - This function will save the PreAmp volume boost.
  44. //
  45. // SaveRegistry(BaseKey,RegPath,KeyType,SubKey)
  46. //   - Save a registry value.  Can be useful for saving certain
  47. //     codec values (like say brightness for the DivX codec)
  48. //     right before the video loads.
  49. //
  50. //     "BaseKey" Can have 5 values:
  51. //               R = HKEY_CLASSES_ROOT
  52. //               U = HKEY_CURRENT_USER
  53. //               M = HKEY_LOCAL_MACHINE
  54. //               S = HKEY_USERS
  55. //               C = HKEY_CURRENT_CONFIG
  56. //
  57. //     "RegPath" is a path, such as "Software\VirtuaMedia\ZoomPlayer"
  58. //
  59. //     "KeyType" is the type of key, values can be:
  60. //               S = String
  61. //               D = DWord
  62. //
  63. //     "SubKey"  is the name of a key within the path
  64. //
  65. //
  66. //
  67. // SavePlacement, SaveAspectRatio and SaveOverlayColotControls
  68. // are pretty straight forward, here are some useful examples for
  69. // "SaveRegistry" (uncomment if you want them used):
  70. //
  71. // * Save the DivX 3.11 settings (tested under Windows XP, might be different
  72. //   location under other Operating Systems):
  73. //
  74. // SaveRegistry(U,Software\Microsoft\Scrunch\Video,D,Brightness)
  75. // SaveRegistry(U,Software\Microsoft\Scrunch\Video,D,Contrast)
  76. // SaveRegistry(U,Software\Microsoft\Scrunch\Video,D,Hue)
  77. // SaveRegistry(U,Software\Microsoft\Scrunch\Video,D,Saturation)
  78. // SaveRegistry(U,Software\Microsoft\Scrunch\Video,D,Contrast)
  79. // SaveRegistry(U,Software\Microsoft\Scrunch\Video,D,Post Process Mode)
  80. // SaveRegistry(U,Software\Microsoft\Scrunch\Video,D,Current Post Process Mode)
  81. //
  82. //
  83. // * Save the DivX 4.xx settings:
  84. //
  85. // SaveRegistry(U,Software\DivXNetworks\DivX4Windows,D,Brightness)
  86. // SaveRegistry(U,Software\DivXNetworks\DivX4Windows,D,Contrast)
  87. // SaveRegistry(U,Software\DivXNetworks\DivX4Windows,D,Saturation)
  88. // SaveRegistry(U,Software\DivXNetworks\DivX4Windows,D,Postprocessing)
  89. //
  90. // As a security measure, registry information isn't set to load by
  91. // default, you must manually enable it through the "Options->Settings" tab.
  92. //
  93. // By default we only save the Video Placement,
  94. // Aspect Ratio and Overlay Color Controls.
  95. //
  96. SaveBlanking
  97. SaveCustomAR
  98. SavePlacement
  99. SaveAspectRatio
  100. SaveOverlayColorControls
  101. SaveVMR9ColorControls
  102. SaveVolume
  103. SavePreAmp
  104. SaveEQ
  105. SaveBalance
  106. SaveAudioSync
  107.