Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
1606e551
Commit
1606e551
authored
Feb 05, 2011
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat: Initialize gnutls in ff_tls_init()
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
81486312
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
network.c
libavformat/network.c
+20
-0
No files found.
libavformat/network.c
View file @
1606e551
...
...
@@ -53,6 +53,16 @@ static unsigned long openssl_thread_id(void)
#endif
#endif
#endif
#if CONFIG_GNUTLS
#include <gnutls/gnutls.h>
#if THREADS && GNUTLS_VERSION_NUMBER <= 0x020b00
#include <gcrypt.h>
#include <errno.h>
#undef malloc
#undef free
GCRY_THREAD_OPTION_PTHREAD_IMPL
;
#endif
#endif
void
ff_tls_init
(
void
)
{
...
...
@@ -75,6 +85,13 @@ void ff_tls_init(void)
#endif
}
openssl_init
++
;
#endif
#if CONFIG_GNUTLS
#if THREADS && GNUTLS_VERSION_NUMBER < 0x020b00
if
(
gcry_control
(
GCRYCTL_ANY_INITIALIZATION_P
)
==
0
)
gcry_control
(
GCRYCTL_SET_THREAD_CBS
,
&
gcry_threads_pthread
);
#endif
gnutls_global_init
();
#endif
avpriv_unlock_avformat
();
}
...
...
@@ -95,6 +112,9 @@ void ff_tls_deinit(void)
}
#endif
}
#endif
#if CONFIG_GNUTLS
gnutls_global_deinit
();
#endif
avpriv_unlock_avformat
();
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment