FFmpeg no longer needed for AAC

Steveice10 2023-05-17 20:58:52 -07:00
parent 9d02f2a2d9
commit e11ec18e89

@ -23,7 +23,6 @@ mkdir build
cd build cd build
cmake .. -DCMAKE_OSX_ARCHITECTURES="x86_64;x86_64h" -DCMAKE_BUILD_TYPE=Release cmake .. -DCMAKE_OSX_ARCHITECTURES="x86_64;x86_64h" -DCMAKE_BUILD_TYPE=Release
``` ```
* To enable HLE AAC Decoding, include the cmake flag `-DENABLE_FFMPEG_AUDIO_DECODER=ON`
This builds a fat binary that has slices targeting early and late x64 machines. This builds a fat binary that has slices targeting early and late x64 machines.
@ -44,4 +43,3 @@ A few things to note are:
``` ```
cmake .. -DCMAKE_OSX_ARCHITECTURES="arm64" -DCMAKE_BUILD_TYPE=Release cmake .. -DCMAKE_OSX_ARCHITECTURES="arm64" -DCMAKE_BUILD_TYPE=Release
``` ```
You can similarly enable HLE AAC decoding by appending the flag `-DENABLE_FFMPEG_AUDIO_DECODER=ON` to the `cmake` command.