options: Add enable_subtitles config option

Enable generic subtitle support by default for unknown clients.  Set the
new enable_subtitles option to false to revert to the old behavior.
This commit is contained in:
Justin Maggard
2018-01-09 14:50:15 -08:00
parent 33fd018828
commit 8bdba2f40d
8 changed files with 21 additions and 2 deletions

View File

@ -195,6 +195,7 @@ extern uint32_t runtime_flags;
#endif
#define SCANNING_MASK 0x0100
#define RESCAN_MASK 0x0200
#define SUBTITLES_MASK 0x0400
#define SETFLAG(mask) runtime_flags |= mask
#define GETFLAG(mask) (runtime_flags & mask)