2024-09-26 07:18:55 +00:00
2024-09-27 00:26:40 +00:00
# WinaMproved
2024-09-23 09:45:11 +00:00
## About
2024-09-27 00:26:40 +00:00
A better version of the "Open Source" media player Winamp.
2024-09-24 17:11:56 +00:00
2024-09-23 09:45:11 +00:00
## Usage
2024-09-23 07:29:16 +00:00
2024-09-26 07:18:55 +00:00
Building of the Winamp desktop client is currently based around Visual Studio 2019 (VS2019) and Intel IPP libs (You need to use exactly v6.1.1.035). There are different options of how to build Winamp:
2024-09-23 07:29:16 +00:00
2024-09-26 07:18:55 +00:00
1. Use the `build_winampAll_2019.cmd` script file that makes 4 versions x86/x64 (Debug and Release). In this case, Visual Studio IDE is not required.
2024-09-25 14:42:07 +00:00
2. Use the `winampAll_2019.sln` file to build and debug in Visual Studio IDE.
2024-09-23 07:29:16 +00:00
2024-09-23 09:45:11 +00:00
### Dependencies
2024-09-23 07:29:16 +00:00
2024-09-26 15:06:23 +00:00
#### libdiscid
We take libdiscid from https://github.com/metabrainz/libdiscid/tree/v0.6.2, copy it in /Src/external_dependencies/libdiscid-0.6.2/
2024-09-23 09:45:11 +00:00
#### libvpx
2024-09-26 07:29:42 +00:00
2024-09-26 07:18:55 +00:00
We take libvpx from [https://github.com/ShiftMediaProject/libvpx ](https://github.com/ShiftMediaProject/libvpx ), modify it, and pack it to archive.
2024-09-25 14:42:07 +00:00
Run `unpack_libvpx_v1.8.2_msvc16.cmd` to unpack.
2024-09-23 07:29:16 +00:00
2024-09-23 09:45:11 +00:00
#### libmpg123
2024-09-26 07:29:42 +00:00
2024-09-26 07:18:55 +00:00
We take libmpg123 from [https://www.mpg123.de/download.shtml ](https://www.mpg123.de/download.shtml ), modify it, and pack it to archive.
Run `unpack_libmpg123.cmd` to unpack and process the DLLs.
2024-09-23 07:29:16 +00:00
2024-09-23 09:45:11 +00:00
#### OpenSSL
2024-09-26 07:29:42 +00:00
2024-09-26 07:18:55 +00:00
You need to use `openssl-1.0.1u` . For that, you need to build a static version of these libs.
2024-09-25 14:42:07 +00:00
Run `build_vs_2019_openssl_x86.cmd` and `build_vs_2019_openssl_64.cmd` .
2024-09-23 07:29:16 +00:00
2024-09-26 07:18:55 +00:00
To build OpenSSL, you need to install:
2024-09-23 07:29:16 +00:00
2024-09-26 07:18:55 +00:00
- 7-Zip ([https://www.7-zip.org/](https://www.7-zip.org/)) – Licensed under the GNU LGPL.
- NASM ([https://www.nasm.us/](https://www.nasm.us/)) – Licensed under the 2-Clause BSD License.
- Perl ([https://www.perl.org/](https://www.perl.org/)) – Licensed under the Artistic License or GPL.
2024-09-23 07:29:16 +00:00
2024-09-26 07:18:55 +00:00
#### DirectX 9 SDK
2024-09-26 07:29:42 +00:00
2024-09-26 07:18:55 +00:00
We take DirectX 9 SDK (June 2010) from Microsoft, modify it, and pack it to archive.
2024-09-25 14:42:07 +00:00
Run `unpack_microsoft_directx_sdk_2010.cmd` to unpack it.
2024-09-23 07:29:16 +00:00
2024-09-23 09:45:11 +00:00
#### Microsoft ATLMFC lib fix
2024-09-26 07:29:42 +00:00
2024-09-25 14:42:07 +00:00
In file `C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\atlmfc\include\atltransactionmanager.h`
2024-09-23 07:29:16 +00:00
2024-09-26 07:18:55 +00:00
Go to line 427 and change from:
2024-09-26 07:29:42 +00:00
2024-09-26 07:18:55 +00:00
```cpp
return ::DeleteFile((LPTSTR)lpFileName);
```
2024-09-26 07:29:42 +00:00
2024-09-26 07:18:55 +00:00
to:
2024-09-26 07:29:42 +00:00
2024-09-26 07:18:55 +00:00
```cpp
return DeleteFile((LPTSTR)lpFileName);
```
2024-09-23 07:29:16 +00:00
2024-09-23 09:45:11 +00:00
#### Intel IPP 6.1.1.035
2024-09-26 07:29:42 +00:00
2024-09-26 07:18:55 +00:00
We take Intel IPP 6.1.1.035, modify it, and pack it to archive.
2024-09-24 17:14:37 +00:00
2024-09-25 14:42:07 +00:00
Run `unpack_intel_ipp_6.1.1.035.cmd` to unpack it.
2024-09-26 07:18:55 +00:00
### Build Tools
Several external build tools are required to build Winamp. These tools are not bundled directly into the repository to comply with their respective licenses. You will need to download them separately from the following links:
- **7-Zip Portable**: Download from [https://www.7-zip.org/ ](https://www.7-zip.org/ )
License: GNU LGPL
- **Git**: Download from [https://git-scm.com/download/win ](https://git-scm.com/download/win )
License: GNU GPL v2
- **TortoiseSVN**: Download from [https://tortoisesvn.net/downloads.html ](https://tortoisesvn.net/downloads.html )
License: GNU GPL v2
Make sure to install these tools as part of your build environment. You may need to modify the build scripts to reflect the correct paths to these tools on your system.