parent
c6d1b17dfb
commit
f4574e585d
@ -1,39 +0,0 @@
|
|||||||
From 680849e6b9ced55fe8ac61771fd57e694c9ff79c Mon Sep 17 00:00:00 2001
|
|
||||||
From: Nicolas Chauvet <kwizart@gmail.com>
|
|
||||||
Date: Mon, 24 Sep 2018 18:28:26 +0200
|
|
||||||
Subject: [PATCH] Use @SYSTEM wide ciphers for gnutls
|
|
||||||
|
|
||||||
Gnutls upstream has support for system
|
|
||||||
This is decribed at
|
|
||||||
https://fedoraproject.org/wiki/Packaging:CryptoPolicies
|
|
||||||
Also found on the debian wiki
|
|
||||||
https://wiki.debian.org/CryptoPolicy
|
|
||||||
|
|
||||||
Signed-off-by: Nicolas Chauvet <kwizart@gmail.com>
|
|
||||||
---
|
|
||||||
modules/misc/gnutls.c | 2 ++
|
|
||||||
1 file changed, 2 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/modules/misc/gnutls.c b/modules/misc/gnutls.c
|
|
||||||
index 1b214358d4..05b4209692 100644
|
|
||||||
--- a/modules/misc/gnutls.c
|
|
||||||
+++ b/modules/misc/gnutls.c
|
|
||||||
@@ -768,6 +768,7 @@ static void CloseServer (vlc_tls_creds_t *crd)
|
|
||||||
"hash functions and compression methods can be selected. " \
|
|
||||||
"Refer to GNU TLS documentation for detailed syntax.")
|
|
||||||
static const char *const priorities_values[] = {
|
|
||||||
+ "@SYSTEM",
|
|
||||||
"PERFORMANCE",
|
|
||||||
"NORMAL",
|
|
||||||
"SECURE128",
|
|
||||||
@@ -775,6 +776,7 @@ static const char *const priorities_values[] = {
|
|
||||||
"EXPORT",
|
|
||||||
};
|
|
||||||
static const char *const priorities_text[] = {
|
|
||||||
+ N_("System (default to system crypto ciphers policy)"),
|
|
||||||
N_("Performance (prioritize faster ciphers)"),
|
|
||||||
N_("Normal"),
|
|
||||||
N_("Secure 128-bits (exclude 256-bits ciphers)"),
|
|
||||||
--
|
|
||||||
2.17.2
|
|
||||||
|
|
@ -0,0 +1,11 @@
|
|||||||
|
--- a/modules/codec/aom.c
|
||||||
|
+++ b/modules/codec/aom.c
|
||||||
|
@@ -98,7 +98,6 @@
|
||||||
|
{ VLC_CODEC_I444, AOM_IMG_FMT_I444, 8, 0 },
|
||||||
|
|
||||||
|
{ VLC_CODEC_YV12, AOM_IMG_FMT_YV12, 8, 0 },
|
||||||
|
-{ VLC_CODEC_YUVA, AOM_IMG_FMT_444A, 8, 0 },
|
||||||
|
|
||||||
|
{ VLC_CODEC_GBR_PLANAR, AOM_IMG_FMT_I444, 8, 1 },
|
||||||
|
{ VLC_CODEC_GBR_PLANAR_10L, AOM_IMG_FMT_I44416, 10, 1 },
|
||||||
|
|
Loading…
Reference in new issue