From c270391772413239480b3f6bb5ee649b425a5ef1 Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Thu, 1 Jun 2023 17:41:51 +0200 Subject: [PATCH] Add WASAPI2 plugin Fixes #1204 --- .github/workflows/build.yml | 1 + dist/windows/strawberry.nsi.in | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e093d0145..de3a19e76 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1427,6 +1427,7 @@ jobs: copy ${{env.prefix_path_backslash}}\lib\gstreamer-1.0\gstvolume.dll .\gstreamer-plugins\ copy ${{env.prefix_path_backslash}}\lib\gstreamer-1.0\gstvorbis.dll .\gstreamer-plugins\ copy ${{env.prefix_path_backslash}}\lib\gstreamer-1.0\gstwasapi.dll .\gstreamer-plugins\ + copy ${{env.prefix_path_backslash}}\lib\gstreamer-1.0\gstwasapi2.dll .\gstreamer-plugins\ copy ${{env.prefix_path_backslash}}\lib\gstreamer-1.0\gstwavenc.dll .\gstreamer-plugins\ copy ${{env.prefix_path_backslash}}\lib\gstreamer-1.0\gstwavpack.dll .\gstreamer-plugins\ copy ${{env.prefix_path_backslash}}\lib\gstreamer-1.0\gstwavparse.dll .\gstreamer-plugins\ diff --git a/dist/windows/strawberry.nsi.in b/dist/windows/strawberry.nsi.in index 2060127cd..ecee5f0c5 100644 --- a/dist/windows/strawberry.nsi.in +++ b/dist/windows/strawberry.nsi.in @@ -733,6 +733,7 @@ Section "Gstreamer plugins" gstreamer-plugins File "/oname=gstvolume.dll" "gstreamer-plugins\gstvolume.dll" File "/oname=gstvorbis.dll" "gstreamer-plugins\gstvorbis.dll" File "/oname=gstwasapi.dll" "gstreamer-plugins\gstwasapi.dll" + File "/oname=gstwasapi2.dll" "gstreamer-plugins\gstwasapi2.dll" File "/oname=gstwavenc.dll" "gstreamer-plugins\gstwavenc.dll" File "/oname=gstwavpack.dll" "gstreamer-plugins\gstwavpack.dll" File "/oname=gstwavparse.dll" "gstreamer-plugins\gstwavparse.dll" @@ -1215,6 +1216,7 @@ Section "Uninstall" Delete "$INSTDIR\gstreamer-plugins\gstvolume.dll" Delete "$INSTDIR\gstreamer-plugins\gstvorbis.dll" Delete "$INSTDIR\gstreamer-plugins\gstwasapi.dll" + Delete "$INSTDIR\gstreamer-plugins\gstwasapi2.dll" Delete "$INSTDIR\gstreamer-plugins\gstwavenc.dll" Delete "$INSTDIR\gstreamer-plugins\gstwavpack.dll" Delete "$INSTDIR\gstreamer-plugins\gstwavparse.dll"