diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 2b44529a2..a55e2b1f8 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -1376,6 +1376,7 @@ jobs: /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 + /usr/src/strawberry-mxe/usr/x86_64-w64-mingw32.shared/bin/gstreamer-1.0/libgstfdkaac.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 d65b4ea5f..46e04fe61 100644 --- a/dist/windows/strawberry.nsi.in +++ b/dist/windows/strawberry.nsi.in @@ -226,6 +226,7 @@ Section "Strawberry" Strawberry File "libdl.dll" File "libfaac-0.dll" File "libfaad-2.dll" + File "libfdk-aac-2.dll" File "libffi-8.dll" File "libfreetype-6.dll" File "libgio-2.0-0.dll" @@ -464,6 +465,7 @@ Section "Gstreamer plugins" gstreamer-plugins File "/oname=libgstflac.dll" "gstreamer-plugins\libgstflac.dll" File "/oname=libgstfaac.dll" "gstreamer-plugins\libgstfaac.dll" File "/oname=libgstfaad.dll" "gstreamer-plugins\libgstfaad.dll" + File "/oname=libgstfdkaac.dll" "gstreamer-plugins\libgstfdkaac.dll" File "/oname=libgstgio.dll" "gstreamer-plugins\libgstgio.dll" File "/oname=libgsticydemux.dll" "gstreamer-plugins\libgsticydemux.dll" File "/oname=libgstid3demux.dll" "gstreamer-plugins\libgstid3demux.dll" @@ -618,6 +620,7 @@ Section "Uninstall" Delete "$INSTDIR\libdl.dll" Delete "$INSTDIR\libfaac-0.dll" Delete "$INSTDIR\libfaad-2.dll" + Delete "$INSTDIR\libfdk-aac-2.dll" Delete "$INSTDIR\libffi-8.dll" Delete "$INSTDIR\libfreetype-6.dll" Delete "$INSTDIR\libgio-2.0-0.dll" @@ -802,6 +805,7 @@ Section "Uninstall" Delete "$INSTDIR\gstreamer-plugins\libgstflac.dll" Delete "$INSTDIR\gstreamer-plugins\libgstfaac.dll" Delete "$INSTDIR\gstreamer-plugins\libgstfaad.dll" + Delete "$INSTDIR\gstreamer-plugins\libgstfdkaac.dll" Delete "$INSTDIR\gstreamer-plugins\libgstgio.dll" Delete "$INSTDIR\gstreamer-plugins\libgsticydemux.dll" Delete "$INSTDIR\gstreamer-plugins\libgstid3demux.dll"