You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-16 22:42:38 +02:00
lavf/tls_mbedtls: add missing call to psa_crypto_init
This is mandatory depending on configuration or at least with mbedTLS 3.6.0. Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
@ -26,6 +26,9 @@
|
|||||||
#include <mbedtls/platform.h>
|
#include <mbedtls/platform.h>
|
||||||
#include <mbedtls/ssl.h>
|
#include <mbedtls/ssl.h>
|
||||||
#include <mbedtls/x509_crt.h>
|
#include <mbedtls/x509_crt.h>
|
||||||
|
#ifdef MBEDTLS_PSA_CRYPTO_C
|
||||||
|
#include <psa/crypto.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "avformat.h"
|
#include "avformat.h"
|
||||||
#include "internal.h"
|
#include "internal.h"
|
||||||
@ -187,6 +190,13 @@ static int tls_open(URLContext *h, const char *uri, int flags, AVDictionary **op
|
|||||||
if ((ret = ff_tls_open_underlying(shr, h, uri, options)) < 0)
|
if ((ret = ff_tls_open_underlying(shr, h, uri, options)) < 0)
|
||||||
goto fail;
|
goto fail;
|
||||||
|
|
||||||
|
#ifdef MBEDTLS_PSA_CRYPTO_C
|
||||||
|
if ((ret = psa_crypto_init()) != PSA_SUCCESS) {
|
||||||
|
av_log(h, AV_LOG_ERROR, "psa_crypto_init returned %d\n", ret);
|
||||||
|
goto fail;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
mbedtls_ssl_init(&tls_ctx->ssl_context);
|
mbedtls_ssl_init(&tls_ctx->ssl_context);
|
||||||
mbedtls_ssl_config_init(&tls_ctx->ssl_config);
|
mbedtls_ssl_config_init(&tls_ctx->ssl_config);
|
||||||
mbedtls_entropy_init(&tls_ctx->entropy_context);
|
mbedtls_entropy_init(&tls_ctx->entropy_context);
|
||||||
|
Reference in New Issue
Block a user