diff options
author | Jean-Francois Mauguit <jfmauguit@mac.com> | 2024-09-24 09:03:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 09:03:25 -0400 |
commit | bab614c421ed7ae329d26bf028c4a3b1d2450f5a (patch) | |
tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/installer/winamp/sections/grp_mmedia.nsh | |
parent | 4bde6044fddf053f31795b9eaccdd2a5a527d21f (diff) | |
parent | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (diff) | |
download | winamp-bab614c421ed7ae329d26bf028c4a3b1d2450f5a.tar.gz |
Merge pull request #5 from WinampDesktop/community
Merge to main
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 |