mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-22 06:00:06 +00:00
Add Instructions for HLE AAC Decoding support
parent
0317f6fdc8
commit
fb1cac7566
@ -13,6 +13,12 @@ You'll need to download and install the following to build Citra:
|
|||||||
- Deb: `apt-get install qtbase5-dev libqt5opengl5-dev qtmultimedia5-dev`
|
- Deb: `apt-get install qtbase5-dev libqt5opengl5-dev qtmultimedia5-dev`
|
||||||
- Arch: `pacman -S qt5`
|
- Arch: `pacman -S qt5`
|
||||||
- Fedora: `dnf install qt5-qtmultimedia-devel`
|
- Fedora: `dnf install qt5-qtmultimedia-devel`
|
||||||
|
* **Optional dependencies needed for HLE AAC Decoding on Linux**
|
||||||
|
- FDK-AAC
|
||||||
|
* Deb: `apt-get install libfdk-aac-dev`
|
||||||
|
* Arch: `pacman -S libfdk-aac-dev`
|
||||||
|
* Fedora: `dnf install fdk-aac-free-devel`
|
||||||
|
- [FFMPEG](https://ffmpeg.org/download.html#build-linux) 4.0+
|
||||||
* Compiler: GCC or Clang. You only need one of these two:
|
* Compiler: GCC or Clang. You only need one of these two:
|
||||||
* GCC 7.0+.
|
* GCC 7.0+.
|
||||||
- Deb: `apt-get install build-essential`
|
- Deb: `apt-get install build-essential`
|
||||||
@ -47,6 +53,8 @@ cmake ../
|
|||||||
make
|
make
|
||||||
sudo make install (optional)
|
sudo make install (optional)
|
||||||
```
|
```
|
||||||
|
- To enable HLE AAC Decoding, use `cmake .. -DENABLE_FFMPEG` instead.
|
||||||
|
|
||||||
Optionally, you can use "cmake -i .." to adjust various options (e.g. disable the Qt GUI).
|
Optionally, you can use "cmake -i .." to adjust various options (e.g. disable the Qt GUI).
|
||||||
|
|
||||||
**Using clang:**
|
**Using clang:**
|
||||||
@ -70,6 +78,7 @@ cmake .. -DCMAKE_BUILD_TYPE=Release
|
|||||||
make
|
make
|
||||||
sudo make install (optional)
|
sudo make install (optional)
|
||||||
```
|
```
|
||||||
|
- To enable HLE AAC Decoding, use `cmake .. -DCMAKE_BUILD_TYPE=Release -DENABLE_FFMPEG` instead.
|
||||||
|
|
||||||
### Building with debug symbols:
|
### Building with debug symbols:
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user