URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5541cffa17a8c45004e5ceeda52d4d6b2acee037
Author: Andreas Rheinhardt <[email protected]>
Date:   Thu Dec 3 01:06:22 2020 +0100

    avcodec/mlpenc: Make encoders init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0166bb12e75c2627c849a02b27eabaf57d251347
Author: Andreas Rheinhardt <[email protected]>
Date:   Thu Dec 3 00:33:27 2020 +0100

    avcodec/mlpenc: Add const where appropriate
    
    The MLP/TrueHD encoder uses pointers to non-const to access several
    static objects that are only initialized at runtime and are therefore
    not declared as const. This does not result in compiler warnings, but it
    is fragile, as these objects are really not to be modified as they are
    not owned by any encoder instance. Therefore this commit adds const to
    the pointed to type of the pointers used to access them after their
    initialization. One object has even been made const.
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e44e41edceea732f5c24b2d34d4a0d2bee9f1cb9
Author: Andreas Rheinhardt <[email protected]>
Date:   Wed Dec 2 19:45:51 2020 +0100

    avcodec/cfhdenc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5408366dc58f18ba3cba41e70d65139200c998e8
Author: Andreas Rheinhardt <[email protected]>
Date:   Wed Dec 2 19:33:05 2020 +0100

    avcodec/ffv1dec: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=62559a9e00b2c3a1b2c6550f60b3fae53bc2b40a
Author: Andreas Rheinhardt <[email protected]>
Date:   Wed Dec 2 19:19:42 2020 +0100

    avcodec/ffv1enc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a7f4abbc62cb6b768c9bcb927ba2485ba6e61913
Author: Andreas Rheinhardt <[email protected]>
Date:   Wed Dec 2 03:52:40 2020 +0100

    avcodec/snow: Hardcode table to save space
    
    The size of ff_qexp is only 32 bytes, but the code to generate it at
    runtime takes 47 bytes (GCC 9.3, x64, -O3 in an av_cold function); so
    just hardcode it.
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=56df06dd8346687d6d9b7321f2af41e4fd614ee3
Author: Andreas Rheinhardt <[email protected]>
Date:   Tue Dec 1 17:33:10 2020 +0100

    avcodec/bink: Don't waste space for VLC table
    
    The Bink video decoder uses VLCs; the longest codes of these VLCs have
    different lengths, yet they are all so small that each VLC is read in
    one go, so that the number of elements in the VLC table actually used by
    each table is 1 << nb_bits, where nb_bits is the length of the longest
    code. Yet when determining the size of the VLC table nb_bits has been
    overestimated as the number of bits of the longest code in all VLCs,
    making said table unnecessary big (2048 vs 976 elements).
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bd473d325d6065bf05502afcd663c312702a2ba7
Author: Andreas Rheinhardt <[email protected]>
Date:   Tue Dec 1 17:25:17 2020 +0100

    avcodec/bink: Make decoder init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8903c7f1fee7683db90b6c4fd14671f36d0d2a0f
Author: Andreas Rheinhardt <[email protected]>
Date:   Tue Dec 1 17:08:50 2020 +0100

    avcodec/kmvc: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1c7e52f8fff36bd67917cdc3fe9f523258659cbc
Author: Andreas Rheinhardt <[email protected]>
Date:   Tue Dec 1 16:49:02 2020 +0100

    avcodec: Mark ff_ass_subtitle_header based decoders as init-threadsafe
    
    ff_ass_subtitle_header_full() just uses av_asprintf() and is therefore
    thread-safe itself.
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a380343c759861dd958316f5d64e2d668610aa33
Author: Andreas Rheinhardt <[email protected]>
Date:   Tue Dec 1 16:15:40 2020 +0100

    avcodec/assdec: Mark decoders as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b3108b1cbc3ea67b80564e0b1302665125360ee9
Author: Andreas Rheinhardt <[email protected]>
Date:   Tue Dec 1 15:48:33 2020 +0100

    avcodec/dvbsubdec: Make decoder init-threadsafe
    
    Note: This decoder uses a static variable in save_display_set() (which
    is only enabled if DEBUG is defined); yet said function can't be reached
    from the decoder's init function at all, so it is no problem for
    setting the FF_CODEC_CAP_INIT_THREADSAFE flag.
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=834ef6f4a9af80f8a9b0029c03a9b9e12bb36acc
Author: Andreas Rheinhardt <[email protected]>
Date:   Tue Dec 1 15:15:09 2020 +0100

    avcodec/dvbsubdec: Add const where appropriate
    
    These pointers sometimes point to static storage (namely to
    default_clut), so adding const to the pointed-to type is important to
    ensure that one does not accidentally modify something that is not owned
    by a single AVCodecContext.
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2a4cedace4d440978aa10757644f2f0f7a80be2f
Author: Andreas Rheinhardt <[email protected]>
Date:   Tue Dec 1 14:15:21 2020 +0100

    avcodec/movtextenc, srtenc, webvttenc: Mark encoders as init-threadsafe
    
    They all rely on ff_ass_split(), which does not have any static state.
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=55982b944738796829a82d7b397b26c937b87762
Author: Andreas Rheinhardt <[email protected]>
Date:   Tue Dec 1 00:35:35 2020 +0100

    avcodec/assenc: Mark encoders as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=30a947b8f8a56598ae799347df7922d231f09fa7
Author: Andreas Rheinhardt <[email protected]>
Date:   Tue Dec 1 00:33:19 2020 +0100

    avcodec/sonic: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0878ccdcd2f1ab0c5f6aa5966a3011f9a36d1861
Author: Andreas Rheinhardt <[email protected]>
Date:   Tue Dec 1 00:29:37 2020 +0100

    avcodec/sonic: Mark encoders as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7d4f1f4d99a95e30a7d5b85dc591e388b2f9f3bd
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 23:58:56 2020 +0100

    avcodec/dca*: Make decoder init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e5bc8b623661db80e854765d7ac359764b0d0760
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 23:23:33 2020 +0100

    avcodec/qtrleenc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8cca0c22b94b8a673a7cd0d200c8eeb23a2ee8bc
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 23:14:36 2020 +0100

    avcodec/wavpackenc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b1f721f35c6b1b4122a29b5f75a618f8da2c5f7e
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 23:09:52 2020 +0100

    avcodec/qtrle: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=032100687aa827ec8591d1021bb9e7226a4e16ad
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 23:06:07 2020 +0100

    avcodec/mpegaudioenc: Mark encoders as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8320820ada6a32890df674d607ad589035d64760
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 22:48:06 2020 +0100

    avcodec/012v: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d43f0f6136e95ab66bee2a23b9f9a756df07db25
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 22:46:23 2020 +0100

    avcodec/alac: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bff74c3aea029c2bf751aadb3aa7cb7b85282fb9
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 22:39:24 2020 +0100

    avcodec/binkaudio: Mark decoders as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e87edfc28ac47336cce57068a8e1aa3eda52394c
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 21:05:50 2020 +0100

    avcodec/sanm: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=94b3ce05b93978e4ed88e20161c344ff496044c3
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 21:03:02 2020 +0100

    avcodec/takdec: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=07efb4b603ad585d0e42a47f01e0cfe20ff35395
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 20:51:50 2020 +0100

    avcodec/v410dec: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e7db133864431cfd0ebcae3b5419904dd466c37c
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 20:23:40 2020 +0100

    avcodec/tiertexseqv: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=af815d4bea1898b96cf1da0a8738fbae73a34a02
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 20:21:04 2020 +0100

    avcodec/vmnc: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=81615a265faefdce129c829d1596ab7e5229dcfe
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 20:17:24 2020 +0100

    avcodec/v308dec: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dcad67583178f4d4215f2dc97941b405d2978865
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 20:16:19 2020 +0100

    avcodec/v210x: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a2ba5bcb56d8f548dc65bcc62f084051e543b85c
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 20:15:25 2020 +0100

    avcodec/v210dec: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=28b63eb005de024e70ea114ee198080d38b18383
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 20:06:36 2020 +0100

    avcodec/vcr1: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5b4aa634f207d765ffc57c49e0177fe8c0f19d3b
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 19:59:07 2020 +0100

    avcodec/vqavideo: Cleanup generically on init failure
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c4c077ada5dcd206f99c6c816f6e20861672dd61
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 19:57:34 2020 +0100

    avcodec/vqavideo: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2c9d398f749022ebe7a8a53bb8a51fc638d130bf
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 19:47:00 2020 +0100

    avcodec/vb: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=759dcd236ff1d92559a5fe3287a8c235d0fbccf9
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 19:46:08 2020 +0100

    avcodec/bmvaudio: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5dc5bb9b2b5f27536e0b63b3cbe0ccd8c63393a3
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 19:16:07 2020 +0100

    avcodec/ttaenc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=010072d14886a404e9ee0bd53ed2620e69befc9d
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 19:13:00 2020 +0100

    avcodec/tta: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3feccede3b3483f84b947e1db16fc976033da3e4
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 19:04:00 2020 +0100

    avcodec/vmdaudio: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=acde66082f930b3762d854752613ab191e892c52
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 19:01:16 2020 +0100

    avcodec/vima: Make decoder init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=58ca07320bed139f81ece73dbbf8718e316d392a
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 18:54:09 2020 +0100

    avcodec/adxdec: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4051599cea72b81138fadd38dbd14e5e41b940c4
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 18:45:22 2020 +0100

    avcodec/truespeech: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=53c077d5ad615c3685edb96f19bb683414f39ec5
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 18:42:26 2020 +0100

    avcodec/ra288: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0ef263eb43f7071116c1ef32de3224891fe05e51
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 18:37:50 2020 +0100

    avcodec/bintext: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fb8d711a5e6a3d7cb87e503bb825b7c50301a1bc
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 18:31:31 2020 +0100

    avcodec/truemotion1: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=344bd79455237691e02f9c45bec0f42d4a2bee18
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 18:27:58 2020 +0100

    avcodec/targa_y216dec: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d537933e73887aa44dd13d9b780b7095716909c5
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 18:26:31 2020 +0100

    avcodec/kvg1dec: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2648df16c6549b5c9c83d312a9011f32afe75353
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 18:04:51 2020 +0100

    avcodec/4xm: Make decoder init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c13b3fdb1965300f6311c0cf646f85ad1e6c1375
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 17:31:20 2020 +0100

    avcodec/8svx: Mark decoders as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e6f13f9a3791b2601a05894355cd731db096dfa1
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 17:24:54 2020 +0100

    avcodec/bitpacked: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c549a94b9d2e8501d0ed809d0014483c05a1f8d5
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 17:23:40 2020 +0100

    avcodec/argo: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f8129134516ebce4fcb3ac1dc0f92a495bc8adb0
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 17:22:06 2020 +0100

    avcodec/arbc: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d0f90e23b4b2ff4ba8880d408951da7266badee9
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 16:33:30 2020 +0100

    avcodec/adxenc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=beaf065f82d479f4f2fedf806c8c86da1d387134
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 16:30:34 2020 +0100

    avcodec/alacenc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4405633e6f1e2ddbb078405dfcf4413dd305ac05
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 16:27:46 2020 +0100

    avcodec/s302menc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=71d47100b4ef58944f94b453085074cbd514bf2e
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 16:22:30 2020 +0100

    avcodec/v308enc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=22593180fea6b55eb350c22a28b092761ba3c6ca
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 16:21:08 2020 +0100

    avcodec/v410enc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f8dce2aaac55c116bbad5068cde41fc180566fb9
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 16:19:34 2020 +0100

    avcodec/targaenc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2b54a2976224bd42d552f485b817682cb8c4a959
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 16:18:08 2020 +0100

    avcodec/tiffenc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=602174b8210b1e4fb7e46639dc7dd35285d322cd
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 16:15:37 2020 +0100

    avcodec/v210enc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5f901211454270f76d7701695fab335c2f127a37
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 16:04:24 2020 +0100

    avcodec/utvideoenc: Cleanup generically on init failure
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7dffe1dcc0794cb801edecbdf66b441c73ad9029
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 16:03:51 2020 +0100

    avcodec/utvideoenc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a2717f0c60c2d71372bee7df14720cbd8a91c3b8
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 15:53:41 2020 +0100

    avcodec/rawenc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6f36a9418b9a9c1d882e25fd803fe7990195630a
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 15:48:10 2020 +0100

    avcodec/avuienc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6577fc812648bd98ab8d25ee8ae85aa0289ebcd4
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 15:43:33 2020 +0100

    avcodec/v408enc: Mark encoders as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=35f99ec074abedba327882621ce28854467a4147
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 15:41:26 2020 +0100

    avcodec/bmpenc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=846e8d6576a3fe01ebee71355447dd767c7fae09
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 15:21:25 2020 +0100

    avcodec/cdgraphics: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=29aaff7edb69c3aecd0592020a6f102e331e8b84
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 14:37:18 2020 +0100

    avcodec/cngenc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0c47b070e04141472358c84909aa6f001d81f1cb
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 14:33:45 2020 +0100

    avcodec/cook: Make decoder init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=980f002b3f0b63d145918db98cea6bfc5abfc922
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 14:25:42 2020 +0100

    avcodec/cook: Remove redundant free
    
    This decoder has the FF_CODEC_CAP_INIT_CLEANUP flag set.
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=711f14080c538484432f406917074bda6d6b48ce
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 14:24:53 2020 +0100

    avcodec/cook: Don't use 0 for NULL
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=96755c7332621a44ff2f0fcf17e88f97b95c0e4d
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 13:57:36 2020 +0100

    avcodec/cscd: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fc2522c9c54f3715656f7fc38c710bab62096ca3
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 13:53:47 2020 +0100

    avcodec/dfa: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=55e23c5241d572e529e271571c0ce73e60d37ec0
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 00:22:34 2020 +0100

    avcodec/dpcm: Mark decoders as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a80b3e5e0eb676571763a26d063ae4e0364906da
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 00:16:52 2020 +0100

    avcodec/dpxenc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=50734d7676f785caaaf4e09fa951f5766398bee5
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 00:13:03 2020 +0100

    avcodec/dsicinaudio: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=12655d63e1f2113304b8bbf53a8cdc41c8284d5f
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 00:11:52 2020 +0100

    avcodec/dsicinvideo: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=58ef77148c43e90461cf6c0c7d9535930dfbfe71
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 00:09:00 2020 +0100

    avcodec/dss_sp: Remove redundant memset
    
    An AVCodecContext's priv_data has already been zeroed generically before
    calling the init function.
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d3b435f842db92c8cddfd382a50c6d6049446f4b
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 00:08:02 2020 +0100

    avcodec/dss_sp: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=072075f84e19b769c8ee215035b3c5958189ed3d
Author: Andreas Rheinhardt <[email protected]>
Date:   Mon Nov 30 00:05:21 2020 +0100

    avcodec/dvaudiodec: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=24bc6ea28f5b6a3f0c2afe0ab4460cc9d75beff4
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 23:55:40 2020 +0100

    avcodec/dvdsubenc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1dab5699cac99ecddf65d010b581e1f216bff6d5
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 23:45:56 2020 +0100

    avcodec/dxa: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1d5945cd0fdc9de31a0b578fdb043e410a4519a7
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 23:35:59 2020 +0100

    avcodec/eacmv: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ec7925c45418345efa81c74c66c67d062ab461fd
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 23:34:44 2020 +0100

    avcodec/eatgq: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d3ab662c5c7dae27fd0bf5495faceddd237fb7e6
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 23:32:38 2020 +0100

    avcodec/eatgv: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fff618b8b89f479841a44841fa5c8e6fa4cfaf1b
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 23:30:34 2020 +0100

    avcodec/escape124: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=23566222c30f163c5bea437f35992a3addf9a82a
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 23:29:44 2020 +0100

    avcodec/escape130: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ccad905aa45c7adff2590d860b5a06862b982f27
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 23:28:27 2020 +0100

    avcodec/evrcdec: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=843a717b33a02a993208a0956059bd47042443b9
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 23:21:25 2020 +0100

    avcodec/fastaudio: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e5fdc682cc63155884f341c980d10185e37c6a91
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 23:08:05 2020 +0100

    avcodec/fic: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=15d003a49567d5895aeb97d8de119c938316e8eb
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 23:06:29 2020 +0100

    avcodec/flacdec: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9fd34c8bb368e3aa96ccc4868878a515146f7498
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 22:55:05 2020 +0100

    avcodec/flacenc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fa15ad291a0d89292f8f6bce087105a5910b0eff
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 22:10:39 2020 +0100

    avcodec/flashsv: Mark decoders as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=de1d67932b3b3e7b2218e25990cb7ccba8cc0b13
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 21:58:47 2020 +0100

    avcodec/flashsv: Return error if initializing zlib fails
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=856c1402fe808b08b5b35ac9bc337ca8bd317743
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 21:24:36 2020 +0100

    avcodec/flashsv2enc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b6a977f4bbed8546f2bbdbbbc667016d5f9c5cf6
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 21:22:15 2020 +0100

    avcodec/flashsvenc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=072d2caf427bc7f755c2f23b9d7188be4cd6cee8
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 21:20:23 2020 +0100

    avcodec/flicvideo: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f95e1a7355df50485581f0f4b91f47d8c572a9f9
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 21:16:52 2020 +0100

    avcodec/frwu: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dc5385b6e2c82e773253fbea4bef408d3d26c930
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 21:14:41 2020 +0100

    avcodec/gif: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=30a5b66a7c1f562ef588c438db33eba76e6b9f29
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 21:09:00 2020 +0100

    avcodec/g729dec: Mark decoders as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=be633f1237c6735b382121ede48af9a9edc82835
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 20:56:31 2020 +0100

    avcodec/g726: Mark encoders as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d40579c3cb13d34a47f07396b26fb13cebc5e722
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 20:52:53 2020 +0100

    avcodec/g726: Mark decoders as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=995ac7b55ab297615f9234f1c54427500822d2ec
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 20:40:02 2020 +0100

    avcodec/g723_1enc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2079f95b3808f3275ddcc824d615d76bc95ea553
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 20:39:08 2020 +0100

    avcodec/g723_1dec: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dde57205e14a782193f167de25bf1a28dfdf35bb
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 20:37:22 2020 +0100

    avcodec/g722enc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2da9b77a1c291d5ae0ba325f3e816ad813d35680
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 20:35:14 2020 +0100

    avcodec/g722dec: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=406d005601283a04f4cbe5e4bd5ccc44a673b56e
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 20:29:56 2020 +0100

    avcodec/huffyuvdec: Mark decoders as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=908187bbf68e3c43f097f098b24e763c17187da9
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 20:17:35 2020 +0100

    avcodec/huffyuvdec: Cleanup generically on init failure
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b3df59a5ea87b736ec38020a37ae4c3ebfe61a90
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 19:36:19 2020 +0100

    avcodec/hnm4video: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c437afa3d3a0e0012c81dea9a7f8ec700ea7445a
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 19:34:21 2020 +0100

    avcodec/hcom: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=19b8a405d63a3d148a117909dda1ca0898993aca
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 19:09:42 2020 +0100

    avcodec/interplayvideo: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e6142f2695f43a5c1982d88110cc423fbe47c858
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 19:07:46 2020 +0100

    avcodec/interplayacm: Make decoder init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8d87e1ef6c8ea9b63f9251e1e72503a915af47a2
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 18:53:45 2020 +0100

    avcodec/indeo3: Make decoder init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8b8358f580f3637e897e3232e54ea07194a3be1f
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 18:09:20 2020 +0100

    avcodec/ilbcdec: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=abe61c349d7368c38dde37da1d6aee091129d461
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 18:08:09 2020 +0100

    avcodec/iff: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9ae6f5ae92def1e1206f28ba823d0e3b3c222096
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 17:57:05 2020 +0100

    avcodec/iff: Reorder checks to avoid unnecessary alloc+free
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3d0559ee7d05e661a824c4af3ad9068fd4c7e0ac
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 17:26:41 2020 +0100

    avcodec/jvdec: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=67b6f5fbb5d2da2a3bcbab4bfbfe86d723be9b5b
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 17:05:49 2020 +0100

    avcodec/lagarith: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=93aa9056e81f58e00cd3a3252eaa63733bb50dac
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 16:59:31 2020 +0100

    avcodec/mvcdec: Mark decoders as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a3ccfed6189033b7db63c5c329e7d195d55f8dc5
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 16:55:32 2020 +0100

    avcodec/msvideo1enc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ecaf3c2400845a20c98ef211a784263f284c4b76
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 16:54:40 2020 +0100

    avcodec/msvideo1: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bf40d3b94d95f410d85655cd2879a20464a7d345
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 16:50:29 2020 +0100

    avcodec/mss3: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8b395a512344b562b55105ec482c544316ae3350
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 16:42:37 2020 +0100

    avcodec/mss1: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e48c11523f1486e5587001c9cb0b5328e8fced20
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 16:37:25 2020 +0100

    avcodec/msrle: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a25706937035a704ec46878da6afb7e0ae8f72cf
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 16:34:35 2020 +0100

    avcodec/gsmdec: Mark decoders as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b8c0fb34ec569df5a0dd52b6bbda2f94b8c77a35
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 12:43:12 2020 +0100

    avcodec/mmvideo: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=cf728ce04184400846147753b35cb4865dbaa339
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 12:39:10 2020 +0100

    avcodec/midivid: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=21b0e06981fa106964f2308935d1caa83cda7c37
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 01:01:57 2020 +0100

    avcodec/magicyuvenc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f6cc7199a521bd49c9461caff1a4b89143927206
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 00:57:53 2020 +0100

    avcodec/mace: Mark decoders as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8a67b20232b7bde62269c1f435bebd1af79fba49
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 00:55:17 2020 +0100

    avcodec/m101: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=83e96418f78360a470fc284f559b86829036b384
Author: Andreas Rheinhardt <[email protected]>
Date:   Sun Nov 29 00:53:23 2020 +0100

    avcodec/notchlc: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=275d7a81e0d3526933f17ace764afa58a2b7eb73
Author: Andreas Rheinhardt <[email protected]>
Date:   Fri Nov 27 15:51:26 2020 +0100

    avcodec/on2avc: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=cc07608240ec9b4ac09c61ede4a3050cd0e73f8b
Author: Andreas Rheinhardt <[email protected]>
Date:   Fri Nov 27 15:40:04 2020 +0100

    avcodec/proresenc_kostya: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0ca016ea935366bb3851a9df11143881b27c42b2
Author: Andreas Rheinhardt <[email protected]>
Date:   Fri Nov 27 15:18:19 2020 +0100

    avcodec/proresenc_anatoliy: Mark encoders as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=659c2aa35c1a35ffde7fd948b907d79c302036d4
Author: Andreas Rheinhardt <[email protected]>
Date:   Fri Nov 27 14:46:23 2020 +0100

    avcodec/proresdec2: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6834c796366fe92b8513ca0f09e5969c60bcdc1e
Author: Andreas Rheinhardt <[email protected]>
Date:   Fri Nov 27 14:21:44 2020 +0100

    avcodec/pgssubdec: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f8667163dd50467408db0d29ced2d478c8dabcb2
Author: Andreas Rheinhardt <[email protected]>
Date:   Fri Nov 27 14:20:43 2020 +0100

    avcodec/pcxenc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dbabb5cec8bd59403703975a81609a826ce9905c
Author: Andreas Rheinhardt <[email protected]>
Date:   Fri Nov 27 14:13:18 2020 +0100

    avcodec/pamenc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3e732426d183e84d4b2d9153443797ff50494cb2
Author: Andreas Rheinhardt <[email protected]>
Date:   Fri Nov 27 14:00:32 2020 +0100

    avcodec/rpza: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=837ee53724564374c2c752fe5f02027639e5efb2
Author: Andreas Rheinhardt <[email protected]>
Date:   Fri Nov 27 13:59:11 2020 +0100

    avcodec/roqvideoenc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1a83c3a710af4a3f8127b577ec3674db839a9c7e
Author: Andreas Rheinhardt <[email protected]>
Date:   Fri Nov 27 13:55:01 2020 +0100

    avcodec/roqvideodec: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=db09d3ed17f19a1cbbd951a1c70105c2297c6768
Author: Andreas Rheinhardt <[email protected]>
Date:   Fri Nov 27 13:54:05 2020 +0100

    avcodec/roqaudioenc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d0639af58ece57c12fb77a6536457d19dfc749ca
Author: Andreas Rheinhardt <[email protected]>
Date:   Fri Nov 27 13:52:35 2020 +0100

    avcodec/rl2: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=543a2c3784450f1fddd70e7591ff503e06b45d1e
Author: Andreas Rheinhardt <[email protected]>
Date:   Fri Nov 27 13:42:40 2020 +0100

    avcodec/ralf: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=51e38d8e1512b5083da3eb85dca7d039cd7008f4
Author: Andreas Rheinhardt <[email protected]>
Date:   Fri Nov 27 13:39:59 2020 +0100

    avcodec/ra144enc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b7a0850101337fb625cb0447b08d28a65249392e
Author: Andreas Rheinhardt <[email protected]>
Date:   Fri Nov 27 03:39:45 2020 +0100

    avcodec/ra144dec: Mark decoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=71ace22d93c3d41ccd4aaa88f7415c6649de46e1
Author: Andreas Rheinhardt <[email protected]>
Date:   Fri Nov 27 03:37:02 2020 +0100

    avcodec/r210enc: Mark encoders as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

URL:    
http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6c189574459eb64a1d721e82383eaae0c4a62cbb
Author: Andreas Rheinhardt <[email protected]>
Date:   Fri Nov 27 02:37:24 2020 +0100

    avcodec/sunrastenc: Mark encoder as init-threadsafe
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

_______________________________________________
ffmpeg-cvslog mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".

Reply via email to