Commit 53fd1ab2 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat: make av_register_*put_format() thread safe

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent b36b5edb
......@@ -21,6 +21,7 @@
#include "avformat.h"
#include "internal.h"
#include "libavutil/atomic.h"
#include "libavutil/avstring.h"
/**
......@@ -52,22 +53,18 @@ void av_register_input_format(AVInputFormat *format)
{
AVInputFormat **p = &first_iformat;
while (*p != NULL)
p = &(*p)->next;
*p = format;
format->next = NULL;
while(avpriv_atomic_ptr_cas((void * volatile *)p, NULL, format))
p = &(*p)->next;
}
void av_register_output_format(AVOutputFormat *format)
{
AVOutputFormat **p = &first_oformat;
while (*p != NULL)
p = &(*p)->next;
*p = format;
format->next = NULL;
while(avpriv_atomic_ptr_cas((void * volatile *)p, NULL, format))
p = &(*p)->next;
}
int av_match_ext(const char *filename, const char *extensions)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment