Skip to content

Commit

Permalink
#3337 subsample more aggressively
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Nov 9, 2021
1 parent 25b8f1d commit 574f1db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/codecs/webp/encoder.pyx
Expand Up @@ -19,7 +19,7 @@ log = Logger("encoder", "webp")
cdef int SAVE_TO_FILE = envbool("XPRA_SAVE_TO_FILE")
cdef int LOG_CONFIG = envbool("XPRA_WEBP_LOG_CONFIG", False)
cdef int WEBP_THREADING = envbool("XPRA_WEBP_THREADING", True)
cdef int SUBSAMPLING_THRESHOLD = envint("XPRA_WEBP_SUBSAMPLING_THRESHOLD", 40)
cdef int SUBSAMPLING_THRESHOLD = envint("XPRA_WEBP_SUBSAMPLING_THRESHOLD", 80)

cdef inline int MIN(int a, int b):
if a<=b:
Expand Down

0 comments on commit 574f1db

Please sign in to comment.