diff options
author | Jef <jef@targetspot.com> | 2024-09-24 08:54:57 -0400 |
---|---|---|
committer | Jef <jef@targetspot.com> | 2024-09-24 08:54:57 -0400 |
commit | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (patch) | |
tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/installer/winamp/sections/grp_mmedia.nsh | |
parent | 537bcbc86291b32fc04ae4133ce4d7cac8ebe9a7 (diff) | |
download | winamp-20d28e80a5c861a9d5f449ea911ab75b4f37ad0d.tar.gz |
Initial community commit
Diffstat (limited to 'Src/installer/winamp/sections/grp_mmedia.nsh')
-rw-r--r-- | Src/installer/winamp/sections/grp_mmedia.nsh | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Src/installer/winamp/sections/grp_mmedia.nsh b/Src/installer/winamp/sections/grp_mmedia.nsh new file mode 100644 index 00000000..d880da21 --- /dev/null +++ b/Src/installer/winamp/sections/grp_mmedia.nsh @@ -0,0 +1,33 @@ +SectionGroup $(IDS_GRP_MMEDIA) IDX_GRP_MMEDIA ; Multimedia Engine + !include ".\sections\grp_mmedia_decaudio.nsh" + !include ".\sections\grp_mmedia_decvideo.nsh" + !include ".\sections\grp_mmedia_encaudio.nsh" + !include ".\sections\grp_mmedia_output.nsh" + +/* To be replaced by MusicBrainz +!ifndef WINAMP64 + ${WinampSection} "cddb" $(secCDDB) IDX_SEC_CDDB ; >>> [CDDB for recognizing CDs] + ${SECTIONIN_LITE} + SetOutPath $INSTDIR\Plugins + File ${FILES_PATH}\Plugins\in_cdda.dll + ${WinampSectionEnd} ; <<< [CDDB for recognizing CDs] +!endif ; WINAMP64 +*/ + +!ifndef WINAMP64 +!ifdef FULL + ${WinampSection} "digitalSignalProcessing" $(secDSP) IDX_SEC_DSP ; >>> [Signal Processor Studio Plug-in] + ${SECTIONIN_STD} + SetOutPath $INSTDIR\Plugins + ; File "..\..\resources\Plugins\dsp_sps.dll" + File ${FILES_PATH}\Plugins\dsp_sps.dll + DetailPrint "$(IDS_RUN_EXTRACT) $(IDS_DSP_PRESETS)..." ; Extracting presets... + SetDetailsPrint none + SetOutPath $INSTDIR\Plugins\DSP_SPS + File "..\..\resources\data\dsp_sps\*.sps" + SetOutPath $INSTDIR\Plugins + SetDetailsPrint lastused + ${WinampSectionEnd} ; <<< [Signal Processor Studio Plug-in] +!endif ; full +!endif ; WINAMP64 +SectionGroupEnd ; Multimedia Engine
\ No newline at end of file |