mirror of
https://github.com/JustinZeus/Wholphin.git
synced 2026-07-08 23:51:21 +02:00
Include ffmpeg extensions for some audio formats (#109)
Related to #103 Adds ffmpeg decoder module to support a few extra audio formats such as AC3, EAC3, DTS, & TrueHD. This increases the apk size by about 5.4mb (release 17.4mb->22.8mb), but definitely worth it for the added support.
This commit is contained in:
parent
f76556f90e
commit
b1275ae210
15 changed files with 666 additions and 5 deletions
|
|
@ -18,11 +18,18 @@ enum PrefContentScale{
|
|||
FILL_HEIGHT = 5;
|
||||
}
|
||||
|
||||
enum MediaExtensionStatus{
|
||||
MES_FALLBACK = 0;
|
||||
MES_PREFERRED = 1;
|
||||
MES_DISABLED = 2;
|
||||
}
|
||||
|
||||
message PlaybackOverrides{
|
||||
bool ac3_supported = 1;
|
||||
bool downmix_stereo = 2;
|
||||
bool direct_play_ass = 3;
|
||||
bool direct_play_pgs = 4;
|
||||
MediaExtensionStatus media_extensions_enabled = 5;
|
||||
}
|
||||
|
||||
message PlaybackPreferences {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue