]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/msmpeg4: Make ff_msmpeg4_common_init() thread-safe
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Thu, 10 Dec 2020 04:37:54 +0000 (05:37 +0100)
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>
Mon, 26 Apr 2021 22:41:17 +0000 (00:41 +0200)
Reviewed-by: Anton Khirnov <anton@khirnov.net>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
libavcodec/msmpeg4.c

index 920f50f32cdfb6a70db95846b017cd5144cbf6e1..ea1083c1a031f21cab85a325b2c8af98e69f043e 100644 (file)
@@ -27,6 +27,8 @@
  * MSMPEG4 backend for encoder and decoder
  */
 
+#include "libavutil/thread.h"
+
 #include "avcodec.h"
 #include "idctdsp.h"
 #include "mpegvideo.h"
@@ -53,9 +55,6 @@ static av_cold void init_h263_dc_for_msmpeg4(void)
 {
         int level, uni_code, uni_len;
 
-        if(ff_v2_dc_chroma_table[255 + 256][1])
-            return;
-
         for(level=-256; level<256; level++){
             int size, v, l;
             /* find number of bits */
@@ -108,6 +107,8 @@ static av_cold void init_h263_dc_for_msmpeg4(void)
 
 av_cold void ff_msmpeg4_common_init(MpegEncContext *s)
 {
+    static AVOnce init_static_once = AV_ONCE_INIT;
+
     switch(s->msmpeg4_version){
     case 1:
     case 2:
@@ -146,7 +147,7 @@ av_cold void ff_msmpeg4_common_init(MpegEncContext *s)
     }
     //Note the default tables are set in common_init in mpegvideo.c
 
-    init_h263_dc_for_msmpeg4();
+    ff_thread_once(&init_static_once, init_h263_dc_for_msmpeg4);
 }
 
 /* predict coded block */