* Make strict DLNA adherence optional. Many products appear to handle JPEGs >4096x4096 classified as JPEG_LRG, and it's better to not downscale if we don't have to.
This commit is contained in:
@ -76,8 +76,9 @@ extern time_t startup_time;
|
||||
extern struct runtime_vars_s runtime_vars;
|
||||
/* runtime boolean flags */
|
||||
extern int runtime_flags;
|
||||
#define INOTIFYMASK 0x0001
|
||||
#define TIVOMASK 0x0002
|
||||
#define INOTIFY_MASK 0x0001
|
||||
#define TIVO_MASK 0x0002
|
||||
#define DLNA_STRICT_MASK 0x0004
|
||||
|
||||
#define SETFLAG(mask) runtime_flags |= mask
|
||||
#define GETFLAG(mask) runtime_flags & mask
|
||||
|
Reference in New Issue
Block a user