diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 5d3ee46e7..2a0b40932 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -1437,6 +1437,8 @@ jobs: /usr/src/strawberry-mxe/usr/x86_64-w64-mingw32.shared/bin/gstreamer-1.0/libgstdash.dll /usr/src/strawberry-mxe/usr/x86_64-w64-mingw32.shared/bin/gstreamer-1.0/libgstxingmux.dll /usr/src/strawberry-mxe/usr/x86_64-w64-mingw32.shared/bin/gstreamer-1.0/libgstmpg123.dll + /usr/src/strawberry-mxe/usr/x86_64-w64-mingw32.shared/bin/gstreamer-1.0/libgstbs2b.dll + /usr/src/strawberry-mxe/usr/x86_64-w64-mingw32.shared/bin/gstreamer-1.0/libgstremovesilence.dll ${GITHUB_WORKSPACE}/build/gstreamer-plugins/ - name: Copy extra binaries diff --git a/dist/windows/strawberry.nsi.in b/dist/windows/strawberry.nsi.in index 5535d9b07..d65b4ea5f 100644 --- a/dist/windows/strawberry.nsi.in +++ b/dist/windows/strawberry.nsi.in @@ -219,6 +219,7 @@ Section "Strawberry" Strawberry File "avutil-57.dll" File "libbrotlicommon.dll" File "libbrotlidec.dll" + File "libbs2b-0.dll" File "libbz2.dll" File "libcdio-19.dll" File "libchromaprint.dll" @@ -454,6 +455,7 @@ Section "Gstreamer plugins" gstreamer-plugins File "/oname=libgstaudioresample.dll" "gstreamer-plugins\libgstaudioresample.dll" File "/oname=libgstaudiotestsrc.dll" "gstreamer-plugins\libgstaudiotestsrc.dll" File "/oname=libgstautodetect.dll" "gstreamer-plugins\libgstautodetect.dll" + File "/oname=libgstbs2b.dll" "gstreamer-plugins\libgstbs2b.dll" File "/oname=libgstcdio.dll" "gstreamer-plugins\libgstcdio.dll" File "/oname=libgstcoreelements.dll" "gstreamer-plugins\libgstcoreelements.dll" File "/oname=libgstdash.dll" "gstreamer-plugins\libgstdash.dll" @@ -609,6 +611,7 @@ Section "Uninstall" Delete "$INSTDIR\avutil-57.dll" Delete "$INSTDIR\libbrotlicommon.dll" Delete "$INSTDIR\libbrotlidec.dll" + Delete "$INSTDIR\libbs2b-0.dll" Delete "$INSTDIR\libbz2.dll" Delete "$INSTDIR\libcdio-19.dll" Delete "$INSTDIR\libchromaprint.dll" @@ -790,6 +793,7 @@ Section "Uninstall" Delete "$INSTDIR\gstreamer-plugins\libgstaudioresample.dll" Delete "$INSTDIR\gstreamer-plugins\libgstaudiotestsrc.dll" Delete "$INSTDIR\gstreamer-plugins\libgstautodetect.dll" + Delete "$INSTDIR\gstreamer-plugins\libgstbs2b.dll" Delete "$INSTDIR\gstreamer-plugins\libgstcdio.dll" Delete "$INSTDIR\gstreamer-plugins\libgstcoreelements.dll" Delete "$INSTDIR\gstreamer-plugins\libgstdash.dll"