On branch release/4.1
Your branch is up to date with 'origin/release/4.1'.

Changes not staged for commit:
  (use "git add ..." to update what will be committed)
  (use "git checkout -- ..." to discard changes in working directory)

	modified:   libavformat/udp.c

no changes added to commit (use "git add" and/or "git commit -a")
commit bcfd82b0be0a389497d641b330e29923ce05e5fe
Author: Michael Niedermayer 
Date:   Mon Jan 21 08:34:57 2019 +0100

    Update for 4.1.1
    
    Signed-off-by: Michael Niedermayer 

commit 31fa50f3d97ca4c722e2b35af7b66a4b44a8f46a
Author: Michael Niedermayer 
Date:   Sat Jan 12 22:36:00 2019 +0100

    avcodec/prosumer: Error out if decompress() stops reading data
    
    if 0 is encountered in the LUT then decompress() will continue to output 0 bytes but never read more data.
    Without a specification it is impossible to say if this is invalid or a feature.
    None of the valid prosumer files tested cause a 0 to be read, so it is likely
    not a intended feature.
    
    Fixes: Timeout
    Fixes: 11266/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PROSUMER_fuzzer-5681827423977472
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 62f8d27ef1995354d6529ea0d9428501d7f914b4)
    Signed-off-by: Michael Niedermayer 

commit 552733d48ba591eb8d6821da428ee2ef42429e49
Author: Michael Niedermayer 
Date:   Sat Jan 12 19:37:18 2019 +0100

    avcodec/tiff: Check for 12bit gray fax
    
    Fixes: Assertion failure
    Fixes: 11898/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_TIFF_fuzzer-5759794191794176
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit ec28a85107cccece4dce17c0ccb633defe2d6e98)
    Signed-off-by: Michael Niedermayer 

commit a8b5990f4594d511a854f7d9920573d33c85253a
Author: Michael Niedermayer 
Date:   Tue Dec 25 23:15:20 2018 +0100

    avutil/imgutils: Optimize memset_bytes() by using av_memcpy_backptr()
    
    This is strongly based on code by Marton Balint, and depends on the previous commit
    
    Fixes: Timeout
    Fixes: 11502/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WCMV_fuzzer-5664893810769920
    Before: Executed clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WCMV_fuzzer-5664893810769920 in 11209 ms
    After:  Executed clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WCMV_fuzzer-5664893810769920 in  4104 ms
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by: Marton Balint 
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit f64c0dffa13e6263de3fdff0058ab2fdb03ac1d6)
    Signed-off-by: Michael Niedermayer 

commit cb6af7dfa1499969d8b70c6b1fe3e9d284a69276
Author: Michael Niedermayer 
Date:   Thu Jan 17 22:35:10 2019 +0100

    avutil/mem: Optimize fill32() by unrolling and using 64bit
    
    Reviewed-by: Marton Balint 
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 12b1338be376a3e5fb606d9fe41b58dc4a9e62c7)
    Signed-off-by: Michael Niedermayer 

commit 29d978c91e8e675e025552eeab16a38c051cb3f1
Author: James Almer 
Date:   Tue Jan 1 15:26:31 2019 -0300

    configure: bump year
    
    Happy new year!
    
    (cherry picked from commit 3209d7b3930bab554bf7d97d8041d9d0b88423a8)
    Signed-off-by: Michael Niedermayer 

commit 3a52cae2c70a8409c96f4df63dff85dd5460d8bc
Author: Michael Niedermayer 
Date:   Fri Jan 4 02:46:29 2019 +0100

    avcodec/tests/rangecoder: initialize array to avoid valgrind warning
    
    Found-by: jamrial
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit c15972f0af7679b466dd4a10a54ab2f04f9372c8)
    Signed-off-by: Michael Niedermayer 

commit 792df36f42ab2f5c61281f428bb3a2af2cfef70b
Author: Michael Niedermayer 
Date:   Fri Jan 4 19:51:04 2019 +0100

    avcodec/gdv: Optimize and factorize scaling loops
    
    Fixes: Timeout
    Fixes: 11067/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_GDV_fuzzer-5686623711264768
    
    Before change: Executed clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_GDV_fuzzer-5686623711264768 in 34386 ms
    After  change: Executed clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_GDV_fuzzer-5686623711264768 in 24327 ms
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 6e23736aefa83859fdb6faae4fd14c169f1a41ab)
    Signed-off-by: Michael Niedermayer 

commit c694273feb813263122f121eae7c3c881cbf13ba
Author: Michael Niedermayer 
Date:   Fri Jan 4 20:00:38 2019 +0100

    avcodec/h264_slice: Fix integer overflow in implicit_weight_table()
    
    Fixes: signed integer overflow: 2 * 2132811760 cannot be represented in type 'int'
    Fixes: 11156/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_H264_fuzzer-6237685933408256
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 77e56d74f972537aecd5bc2c5c4111e1d6ad0963)
    Signed-off-by: Michael Niedermayer 

commit 9239d58b3653c876004b49995a8b698327f7cf87
Author: Michael Niedermayer 
Date:   Tue Dec 25 21:30:54 2018 +0100

    avcodec/exr: set layer_match in all branches
    
    Otherwise it is left to the value from the previous iteration
    
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 433d2ae4353f3c513a45780845d9d8ca252cd4dc)
    Signed-off-by: Michael Niedermayer 

commit 1623f42d993adb9fa2bb9f7c766b6ce55922a8d5
Author: Michael Niedermayer 
Date:   Tue Dec 25 18:41:58 2018 +0100

    avcodec/exr: Check for duplicate channel index
    
    Fixes: Out of memory
    Fixes: 11582/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_EXR_fuzzer-5730204559867904
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit f9728feaf90eb7493f8872356f54150efafb59cc)
    Signed-off-by: Michael Niedermayer 

commit 99576bf034ce283f1e7c48ba4898ca2e991b7286
Author: Michael Niedermayer 
Date:   Mon Dec 31 20:54:12 2018 +0100

    avfilter/vf_tonemap_opencl: Make static tables const
    
    Reviewed-by: Paul B Mahol 
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 47c3a10b16f2721c7afa333869aafa8c007fb419)
    Signed-off-by: Michael Niedermayer 

commit e385fc45dddc064dbc48c933d08cdedc764d15f4
Author: Michael Niedermayer 
Date:   Mon Dec 31 20:45:17 2018 +0100

    doc/indevs: fix upto typo
    
    Reviewed-by: Paul B Mahol 
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit b33de557470471fe5d3a07fb441ec3f548f1d50a)
    Signed-off-by: Michael Niedermayer 

commit 15857674c51db30f6862bf5e643f06c9e64f3209
Author: Michael Niedermayer 
Date:   Mon Dec 31 18:11:44 2018 +0100

    avcodec/4xm: Fix returned error codes
    
    Reviewed-by: Paul B Mahol 
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 07607a1db879d0d96e2c91e1354bc4e425937d3a)
    Signed-off-by: Michael Niedermayer 

commit 6b6c854658661573dbc598a1fc5921c5756dd6cd
Author: Michael Niedermayer 
Date:   Fri Dec 28 22:22:52 2018 +0100

    avformat/libopenmpt: Fix successfull typo
    
    Reviewed-by: Lou Logan 
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 571af98a5959d72c65a6753eb8e82cde407f4cd0)
    Signed-off-by: Michael Niedermayer 

commit 41ee513c81a3741760532bad1a929b27b3dacf49
Author: Michael Niedermayer 
Date:   Fri Dec 28 22:22:53 2018 +0100

    avcodec/v4l2_m2m: fix cant typo
    
    Reviewed-by: Lou Logan 
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 062bf5639359e183e016bcb795ac10735f83e863)
    Signed-off-by: Michael Niedermayer 

commit 33b4aba5bdf43415aeb1aa3d51dc03a7cd62b2ee
Author: Michael Niedermayer 
Date:   Fri Dec 28 22:22:56 2018 +0100

    avcodec/mjpegbdec: Fix some misplaced {} and spaces
    
    Reviewed-by: Derek Buitenhuis 
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 11a8d2ccab1fe165eef4578c048d38731dbe1d6f)
    Signed-off-by: Michael Niedermayer 

commit ea279bd160d973e7bc765002fcc13d064d1d356d
Author: David Bryant 
Date:   Tue Nov 20 21:00:47 2018 -0800

    avformat/wvdec: detect and error out on WavPack DSD files
    
    Not currently supported.
    
    (cherry picked from commit db109373d87b1fa5fe9f3d027d1bb752f725b74a)
    Signed-off-by: Michael Niedermayer 

commit 929b5519d8e9fb0bada84a708c7b43bdb447574d
Author: gxw 
Date:   Mon Dec 24 14:07:44 2018 +0800

    avcodec/mips: Fix failed case: hevc-conformance-AMP_A_Samsung_* when enable msa
    
    The AV_INPUT_BUFFER_PADDING_SIZE has been increased to 64, but the value is still 32
    in function ff_hevc_sao_edge_filter_8_msa. So, use AV_INPUT_BUFFER_PADDING_SIZE directly.
    Also, use MAX_PB_SIZE directly instead of 64. Fate tests passed.
    
    Reviewed-by: Derek Buitenhuis 
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit f652c7a45c60427db0a89fae665e63b546af6ebb)
    Signed-off-by: Michael Niedermayer 

commit 5ed024e40bdbc0047d7cad38f6b7d52903dbc108
Author: Michael Niedermayer 
Date:   Sun Dec 16 21:43:07 2018 +0100

    avcodec/fic: Fail on invalid slice size/off
    
    Fixes: Timeout
    Fixes: 11486/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FIC_fuzzer-5677133863583744
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 30a7a81cdc2ee2eac6d3271439c43f11b7327b3e)
    Signed-off-by: Michael Niedermayer 

commit 5550946ff4bdb4f6092e6aabd8d11888695ffbd0
Author: Michael Niedermayer 
Date:   Sun Dec 9 02:26:18 2018 +0100

    avcodec/ilbcdec: fix integer overflow in energy
    
    webrtc uses a int32_t like the existing code in ilbcdec
    
    Fixes: signed integer overflow: 2080245063 + 257939661 cannot be represented in type 'int'
    Fixes: 11037/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ILBC_fuzzer-5682976612941824
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit fbf409cd91aca2b4738c6b5bc963ae6041f26701)
    Signed-off-by: Michael Niedermayer 

commit daef9d43828733534267dd15975f761ce7277a5b
Author: Michael Niedermayer 
Date:   Thu Dec 20 22:40:06 2018 +0100

    postproc/postprocess_template: remove FF_REG_sp from clobber list
    
    Future gcc may no longer support this
    
    Tested-by: James Almer 
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit c1cbeb87db4bfc6e281e4254a6c7fdd3854fc9b9)
    Signed-off-by: Michael Niedermayer 

commit 69f50eb9150c3b587038e9742a0abdab57a94919
Author: Michael Niedermayer 
Date:   Thu Dec 20 22:40:05 2018 +0100

    postproc/postprocess_template: Avoid using %4 for the threshold compare
    
    This avoids problems if %4 is the stack pointer
    the constraints do not allow %4 to be the stack pointer but gcc 9 may
    no longer support specifying such constraints
    
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 4325527e1c4fd2da119e81933172065ee1274eda)
    Signed-off-by: Michael Niedermayer 

commit 73c90818b116e3783e6479172a565cfb9fa36036
Author: Jacob Trimble 
Date:   Wed Dec 19 16:00:22 2018 -0800

    libavformat/mov: Fix NULL-dereference read for some encrypted content.
    
    When reading frames, we need to use the fragment for the correct
    stream.  Sometimes the "current" fragment is not the same as the one
    the frame is for.
    
    Found by Chromium's ClusterFuzz:
    https://crbug.com/906392 and https://crbug.com/915524
    
    Signed-off-by: Jacob Trimble 
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 555f332e7adbd492ca74fa7329c492819b52e2ed)
    Signed-off-by: Michael Niedermayer 

commit c22b67feaae9f6b5a9ebbbb84d64ff749f084135
Author: Michael Niedermayer 
Date:   Sun Dec 16 19:13:27 2018 +0100

    avcodec/rpza: Check that there is enough data for all the blocks
    
    Fixes: Timeout
    Fixes: 11547/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_RPZA_fuzzer-5678435842654208
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit e63517e00a1a8375c7fb3b8c4c64c9a7c3da713e)
    Signed-off-by: Michael Niedermayer 

commit 4c0be3a60cf862656d276443fb0ca1bfcfa7bdc2
Author: Michael Niedermayer 
Date:   Sun Dec 16 19:04:56 2018 +0100

    avcodec/rpza: Move frame allocation to a later point
    
    This will allow performing some fast checks before the slow allocation
    
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 8a708aa99cb0e8d76e52117b1fd89d221f0055e9)
    Signed-off-by: Michael Niedermayer 

commit 42357b37cb9d5960907ccf74972de3a9cf826703
Author: Michael Niedermayer 
Date:   Fri Dec 7 21:52:30 2018 +0100

    avcodec/avcodec: Document the data type for AV_PKT_DATA_MPEGTS_STREAM_ID
    
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 68e011e4103b9cb5ac2d152d73ca8393065a33fb)
    Signed-off-by: Michael Niedermayer 

commit e3fbbb7d18b6a19a55ce4f2662e726e41d330553
Author: Michael Niedermayer 
Date:   Fri Dec 7 21:51:48 2018 +0100

    avformat/mpegts: Fix side data type for stream id
    
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit ab1319d82f0c77308792fa2d88cbfc73c3e47cb7)
    Signed-off-by: Michael Niedermayer 

commit 2f75965c47da0a25ec03a8aebd565fba20aa317b
Author: Michael Niedermayer 
Date:   Thu Dec 6 21:51:22 2018 +0100

    tests/fate/filter-video: increase fuzz for fate-filter-refcmp-psnr-rgb
    
    Fixes: test failure on powerpc
    
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit f8f762c300e29d80ece363edc08e137b371d909f)
    Signed-off-by: Michael Niedermayer 

commit e1f40f0dae68ba82cd955fafd82aec336a81d27d
Author: Michael Niedermayer 
Date:   Tue Dec 18 14:27:48 2018 +0100

    avcodec/mjpegdec: Fix indention of ljpeg_decode_yuv_scan()
    
    Reviewed-by: Paul B Mahol 
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit ea30ac1e408246382796f61d645d1e087aed390a)
    Signed-off-by: Michael Niedermayer 

commit 45f5f2086ebe838b2aad7fa394fb1a2a31952ee8
Author: chcunningham 
Date:   Fri Dec 14 13:44:07 2018 -0800

    lavf/id3v2: fail read_apic on EOF reading mimetype
    
    avio_read may return EOF, leaving the mimetype array unitialized. fail
    early when this occurs to avoid using the array in an unitialized state.
    
    Reviewed-by: Tomas Härdin 
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit ee1e39a576977fd38c3b94fc56125d31d38833e9)
    Signed-off-by: Michael Niedermayer 

commit 321c418b8715e9b3142648561dcd1fd6494a9d62
Author: Michael Niedermayer 
Date:   Sat Dec 15 00:10:17 2018 +0100

    avcodec/rasc: Check that the number of moves is less than or equal the number of pixels
    
    Fixes: OOM
    Fixes: 10307/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_RASC_fuzzer-5393974559244288
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by: Paul B Mahol 
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 092cb17983b2660b4e050a05c739060f8e03d27a)
    Signed-off-by: Michael Niedermayer 

commit f5859d4a8ee22f73d75d6b498d459700b034dd55
Author: Michael Niedermayer 
Date:   Fri Dec 14 21:52:09 2018 +0100

    avformat/nutenc: Document trailer index assert better
    
    Reviewed-by: Paul B Mahol 
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 3a95b73abc868995b08ca2b4d8bbf2cda43184f8)
    Signed-off-by: Michael Niedermayer 

commit 54fbdacc3791a6c5ff5945b139c7221d466676b5
Author: chcunningham 
Date:   Thu Dec 13 13:58:40 2018 -0800

    lavf/mov: ensure only one tkhd per trak
    
    Chromium fuzzing produced a whacky file with extra tkhds. This caused
    an AVStream that was already in use to be corrupted by assigning it a
    new id, which blows up later in mov_read_trun because the
    MOVFragmentStreamInfo.index_entry now points OOB.
    
    Reviewed-by: Baptiste Coudurier 
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit c9f7b6f7a9fdffa0ab8f3aa84a1f701cf5b3a6e9)
    Signed-off-by: Michael Niedermayer 

commit 228f17ced3bd394677f0421f462067a0f287ca8c
Author: Michael Niedermayer 
Date:   Thu Dec 6 01:19:37 2018 +0100

    avcodec/clearvideo: Check remaining input bits in P macro block loop
    
    Fixes: Timeout
    Fixes: 11083/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CLEARVIDEO_fuzzer-5657180351496192
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 7aaab127bebb33003105a620736d6cae8c45a6e5)
    Signed-off-by: Michael Niedermayer 

commit 9b5a6bb67ba35b3442667964f9e3a7e330b10bdc
Author: Michael Niedermayer 
Date:   Wed Dec 5 02:18:51 2018 +0100

    avcodec/rasc: Check input space before reading chunk
    
    Fixes: Timeout
    Fixes: 11118/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_RASC_fuzzer-5652564066959360
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 52ba824c65817c1db6aad41c470dde7162252036)
    Signed-off-by: Michael Niedermayer 

commit 219cbc55277ab64b305c82bfa1f85e919610f81d
Author: Michael Niedermayer 
Date:   Sat Dec 1 21:41:01 2018 +0100

    avcodec/dxv: Check that there is enough data to decompress
    
    Fixes: Timeout
    Fixes: 10979/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_DXV_fuzzer-6178582203203584
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 2bc3811c0d6b34e43a55a7541722761f548628d0)
    Signed-off-by: Michael Niedermayer 

commit 55c36d2498119b3a01337115b28be006602ccb44
Author: Michael Niedermayer 
Date:   Tue Dec 4 16:29:40 2018 +0100

    avcodec/ppc/hevcdsp: Fix build failures with powerpc-linux-gnu-gcc-4.8 with --disable-optimizations
    
    The affected functions could also be changed into macros, this is the
    smaller change to fix it though. And avoids (probably) less readable macros
    The extra code should be optimized out when optimizations are done as all values
    are known at build after inlining.
    
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 2c64a6bcd280c64997e6c4799bc89c0a9393bbf3)
    Signed-off-by: Michael Niedermayer 

commit 558ba71de5c75bd7d2cced51361180baaf32cfd7
Author: Michael Niedermayer 
Date:   Sat Dec 1 22:16:19 2018 +0100

    avcodec/msvideo1: Check for too small dimensions
    
    Such low resolution would result in empty output as a minimum of 4x4 is needed
    We could also check for multiple of 4 dimensions but that is not needed
    
    Fixes: Timeout
    Fixes: 11191/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MSVIDEO1_fuzzer-5739529588178944
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 953bd58861ad933e614510140b05a61e3d1375be)
    Signed-off-by: Michael Niedermayer 

commit 1a5db666ace66a4ebc42557753d09426df561923
Author: Michael Niedermayer 
Date:   Tue Nov 27 23:37:03 2018 +0100

    avcodec/wmv2dec: Skip I frame if its smaller than 1/8 of the minimal size
    
    Frames that small are not valid and of limited use for error concealment, while
    being very computationally intensive to process.
    
    Fixes: Timeout
    Fixes: 11168/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMV2_fuzzer-5733782032744448
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit d6f4341522c3eafb046c47b115d79ce684a899fc)
    Signed-off-by: Michael Niedermayer 

commit eee0cf487aade926af27d7ffb079201ef5e8287e
Author: Michael Niedermayer 
Date:   Thu Nov 29 02:32:10 2018 +0100

    avcodec/msmpeg4dec: Skip frame if its smaller than 1/8 of the minimal size
    
    Frames that small are not valid and of limited use for error concealment, while
    being very computationally intensive to process.
    
    Fixes: Timeout
    Fixes: 11318/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MSMPEG4V1_fuzzer-5710884555456512
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 09ec182864d41c990bc18f620eabb77444aeff57)
    Signed-off-by: Michael Niedermayer 

commit 90db1e441fcd927a76690a7acf3f3225583d7b4e
Author: Michael Niedermayer 
Date:   Sat Nov 17 09:24:30 2018 +0100

    avcodec/truemotion2rt: Fix rounding in input size check
    
    Fixes: Timeout
    Fixes: 11332/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_TRUEMOTION2RT_fuzzer-5678456612847616
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 7f22a4ebc97817fd0968f5ea8295c9a59a6292e0)
    Signed-off-by: Michael Niedermayer 

commit 4fe90900d82aa14ea9e79dc05b8f174f92cfe4dc
Author: Michael Niedermayer 
Date:   Wed Nov 14 09:42:44 2018 +0100

    avcodec/diracdec: Check component quant
    
    Fixes: Timeout
    Fixes: 10708/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_DIRAC_fuzzer-5730140957442048
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 28c96c2ce2781c2cd147a9f3c299e18ce1dc7ff8)
    Signed-off-by: Michael Niedermayer 

commit ee349bd0fd5acae9eb3bc142c93aedbf0dffee3c
Author: Michael Niedermayer 
Date:   Fri Nov 23 02:33:04 2018 +0100

    avcodec/tiff: Limit filtering to decoded data
    
    Fixes: Timeout
    Fixes: 11068/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_TIFF_fuzzer-5698456681709568
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by: Tomas Härdin 
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 90ac0e5f29ba4730cd92d3268938b3730823e52b)
    Signed-off-by: Michael Niedermayer 

commit ab744447e141ecb997c0f01d7242a8aeb824f333
Author: Michael Niedermayer 
Date:   Sat Nov 17 00:38:53 2018 +0100

    avcodec/truemotion2: fix integer overflows in tm2_low_chroma()
    
    Fixes: 11295/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_TRUEMOTION2_fuzzer-4888953459572736
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 2ae39d795613f3c6925c59852b625029b747fe42)
    Signed-off-by: Michael Niedermayer 

commit 89d65915cf6e7d79bd57896a4eb3fd626e699fc1
Author: Michael Niedermayer 
Date:   Fri Nov 9 03:12:45 2018 +0100

    avcodec/pngdec: Check compression method
    
    method 0 (inflate/deflate) is the only specified in the specification and the only supported
    
    Fixes: Timeout
    Fixes: 10976/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PNG_fuzzer-5729372588736512
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 1f99674ddddcc33f4c37def0a206e31ad7c4c1af)
    Signed-off-by: Michael Niedermayer 

commit e69bb0fb05550523a143efdfeffd51d4d2e813c4
Author: Michael Niedermayer 
Date:   Tue Nov 13 20:29:40 2018 +0100

    fftools/ffmpeg: Repair reinit_filter feature
    
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 35040048793bc5d19942277fe17d1235e915a7d8)
    Signed-off-by: Michael Niedermayer 

commit 98a9d868d19b67808b035d121b71e0edeb6269c4
Author: Michael Niedermayer 
Date:   Fri Nov 9 19:59:27 2018 +0100

    avcodec/shorten: Fix integer overflow with offset
    
    Fixes: signed integer overflow: -1625810908 - 582229060 cannot be represented in type 'int'
    Fixes: 10977/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SHORTEN_fuzzer-5732602018267136
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 2f888771cd1ce8d68d4b18a1009650c1f260aaf2)
    Signed-off-by: Michael Niedermayer 

commit b66152a4e5e578c731f7e59e43f4db6b77d7c6d6
Author: Michael Niedermayer 
Date:   Fri Nov 9 23:07:23 2018 +0100

    avcodec/imm4: Use ff_set_dimensions()
    
    Fixes: Out of memory
    Fixes: 10970/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_IMM4_fuzzer-5698750043914240
    
    Reviewed-by: Paul B Mahol 
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit c305e134ce23b46a1164527ade3e1b7e2ecedf5f)
    Signed-off-by: Michael Niedermayer 

commit ac50246cc49add4e53d6716afd454dbe86666efd
Author: Andreas Rheinhardt 
Date:   Fri Nov 9 06:31:38 2018 +0100

    h264_redundant_pps: Fix logging context
    
    The first element of H264RedundantPPSContext is not a pointer to an
    AVClass as required.
    
    Signed-off-by: Andreas Rheinhardt 
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 6dafcb6fdb6271d35220b889833561705c2b366f)
    Signed-off-by: Michael Niedermayer 

commit ddc284300eb09b516cef96b6242041b410369302
Author: Marton Balint 
Date:   Tue Dec 25 22:26:18 2018 +0100

    avfilter/af_asetnsamples: fix last frame props
    
    Frame properties were not copied, so e.g. PTS was not set for the last frame.
    
    Regression since ef3babb2c70f564dc1634b3f29c6e35a2b2dc239.
    
    Signed-off-by: Marton Balint 
    (cherry picked from commit f9e947845f9ac5ccb84cf5e6f4121ec2e23b9946)

commit b420f23566825192c3fc1f46fce24d19ffc1d72e
Author: Mark Thompson 
Date:   Sun Dec 2 20:49:24 2018 +0000

    cbs_av1: Fix reading of overlong uvlc codes
    
    The specification allows 2^32-1 to be encoded as any number of zeroes
    greater than 31, followed by a one.  This previously failed because the
    trace code would overflow the array containing the string representation
    of the bits if there were more than 63 zeroes.  Fix that by splitting the
    trace output into batches, and at the same time move it out of the default
    path.
    
    (While this seems likely to be a specification error, libaom does support
    it so we probably should as well.)
    
    From a test case by keval shah .
    
    Reviewed-by: Michael Niedermayer 
    (cherry picked from commit b97a4b658814b2de8b9f2a3bce491c002d34de31)

commit 5356e610010a25809e6e43146b813056a8929804
Author: James Almer 
Date:   Thu Dec 20 12:26:43 2018 -0300

    avcodec/cbs_av1: fix parsing delta_frame_id_minus1
    
    delta_frame_id_minus1 is not a single value in the bitstream, and can
    store values up to 17 bits wide.
    
    Fixes parsing files with frame ids.
    
    Reviewed-by: Mark Thompson 
    Signed-off-by: James Almer 
    (cherry picked from commit 064f9505f49816650516c7afe93e43d8f547891a)

commit a4ddc3c9fc60e6cf8123966f4ca7a7db70aa58eb
Author: Paul B Mahol 
Date:   Mon Dec 3 10:00:01 2018 +0100

    avfilter/vf_overlay: fix filtering with negative y
    
    (cherry picked from commit 8440835dbe93ef9972ceb940af9bda9bc0e178e7)

commit 59e30c05d74e59d28f2ec4ffd4dbf1822f921f06
Author: Paul B Mahol 
Date:   Thu Nov 22 21:28:59 2018 +0100

    avformat/movenc: get number of written bytes from bitstream writer
    
    Update fate test.
    
    (cherry picked from commit 97d1ee437bbf67d7e3897bc73df4f7d9771ac309)

commit fcffed470a5236bc1799bc3022d588704d9ae5ef
Author: Paul B Mahol 
Date:   Wed Nov 21 11:45:02 2018 +0100

    avformat/movenc: fix size calculation in mov_write_eac3_tag()
    
    Otherwise it would assert when flushing bits.
    
    (cherry picked from commit 027f032bbce9bdf7bbec40665b98590cade33416)

commit 9efc591cb72b96a5880b0968978692fa4c1d99b6
Author: Paul B Mahol 
Date:   Tue Nov 20 23:18:47 2018 +0100

    avfilter/vf_overlay: fix crash with negative y
    
    (cherry picked from commit 57815cfad5c5d6beb6f3fc0ae86b050a970d3a08)

commit d4c5f515f09076635bf5e1591e5ff9d21ac13572
Author: Marton Balint 
Date:   Sat Nov 17 23:26:24 2018 +0100

    avcodec/mpeg_er: fix clearing chroma blocks for 422 and 444
    
    Fixes ticket #7494.
    
    Signed-off-by: Marton Balint 
    (cherry picked from commit e3a96309826dd0ea33db0300f7c75414fdbea0a4)

commit bb01cd3cc01c9982e4b57f8ce5cfd6ec4724f848
Author: Marton Balint 
Date:   Mon Nov 12 22:00:49 2018 +0100

    avfilter/af_afade: fix duration maximum
    
    Signed-off-by: Marton Balint 
    (cherry picked from commit aecd63b926812148014c4f01270473722ae5e945)

commit fed94c2f22fc165e1b012e3b621802b4d03e9214
Author: Mark Harris 
Date:   Sun Nov 11 22:54:04 2018 -0800

    avfilter/vf_fade: fix start/duration max value
    
    A fade out (usually at the end of a video) can easily start beyond
    INT32_MAX (about 36 minutes).  Regression since d40dc64173.
    
    (cherry picked from commit ae4323548ae821db81b73bc66cf5a2f9885296cb)

commit a9e9303f26597b2a166374cd46b00adc0401e634
Author: James Almer 
Date:   Sat Nov 10 22:52:12 2018 -0300

    avcodec/cbs_av1: fix parsing signed integer values
    
    Reviewed-by: Mark Thompson 
    Signed-off-by: James Almer 
    (cherry picked from commit f0f2832a5ce93bad9b1d29f99df6bda2380fc41c)

commit 49bc641e89f7c89648f28feafa2daa3756ba9c7d
Author: James Almer 
Date:   Sat Nov 10 22:51:18 2018 -0300

    avcodec/cbs_av1: fix storage size for segmentation_params feature_value fields
    
    The valid range is -255 to 255.
    
    Reviewed-by: Mark Thompson 
    Signed-off-by: James Almer 
    (cherry picked from commit 79831f4531d98c3c1eab96c10f1135d08abef5f3)

commit 4f1e07090a9f6064078cac694f1d7148f86176c3
Author: Mark Thompson 
Date:   Wed Nov 14 22:56:18 2018 +0000

    configure: Add missing xlib dependency for VAAPI X11 code
    
    Fixes #7538.
    
    (cherry picked from commit 2ce3a48f30fe3cec7153aa3f18a1012a366aca3a)

commit 11dff170ef79d26d1de2bcd13b603a6c4c5c9815
Author: Mark Wu 
Date:   Tue Oct 23 12:49:08 2018 +0800

    avcodec/hevcdec: fix non-ref frame judgement
    
    After inspecting the source code of x265, mpv and ffmpeg, I've found that
    ffmpeg mistakenly regards EVC_NAL_BLA_N_LP and HEVC_NAL_IDR_N_LP as non-
    reference frames, which are acutally reference frames according to the
    specification in x265, and drops them.
    
    This patch should address the problem. I have tested it with mpv.
    
    Signed-off-by: Mark Wu 
    Signed-off-by: James Almer 
    (cherry picked from commit 10bc4c3a7df7bb26303067b97311b7eeedfd453e)

commit 10506de9ad1fb050737ef79cf4853742b793c37d
Author: Mark Thompson 
Date:   Sun Nov 4 23:58:01 2018 +0000

    cbs_av1: Support redundant frame headers
    
    (cherry picked from commit f5894178fb8063ec17c61c04df96a70607ca2daa)

commit af3fccfeff74da54fc3e702fbb6757c2aad2814e
Author: Mark Thompson 
Date:   Sun Nov 4 23:56:39 2018 +0000

    cbs_av1: Fix header writing when already aligned
    
    (cherry picked from commit 6bdb7712ae0267ba4f69c7434d2b3dee12762d1d)

commit ec1b5216fc65602b97cf5dc97a9a9a266f38894f
Author: Mark Thompson 
Date:   Mon Nov 5 14:22:10 2018 +0000

    configure: Add missing V4L2 M2M decoder BSF dependencies
    
    (cherry picked from commit e9d2e3fdaacb6872dd689ffd5a65e476b70dee3d)

commit 066ff02621cea7d78d7791c91e0d916c30bffb27
Author: Mark Thompson 
Date:   Mon Nov 5 14:22:05 2018 +0000

    configure: Add missing IVF muxer BSF dependency
    
    (cherry picked from commit a4fb2b115071220f23ad7b3d82037647e94279ed)

commit 398a70309e4fa99433e98ab7f184ee7eb0abbca4
Author: James Almer 
Date:   Sun Nov 4 17:07:39 2018 -0300

    avcodec/cbs_av1: fix decoder/encoder_buffer_delay variable types
    
    buffer_delay_length_minus_1 is five bits long, meaning decode_buffer_delay and
    encoder_buffer_delay can have values up to 32 bits long.
    
    Reviewed-by: Mark Thompson 
    Signed-off-by: James Almer 
    (cherry picked from commit 89a0d33e3a53e8edefd734b131a7035d13052947)

commit acd13f12556bd1e8d90a0afe1cbd3a949adf26a2
Author: Mark Thompson 
Date:   Mon Nov 5 00:01:54 2018 +0000

    configure: Fix av1_metadata BSF dependency
    
    (cherry picked from commit 34429182b93123a25e38819ef15bdae42793209f)

commit 1c98cf4ddd38400793a4d01b3c3a662beb9e3ba8
Author: James Almer 
Date:   Tue Oct 2 21:08:54 2018 -0300

    avformat/ivfenc: use the av1_metadata bsf to insert Temporal Delimiter OBUs if needed
    
    Reviewed-by: Mark Thompson 
    Signed-off-by: James Almer 
    (cherry picked from commit 2d2af23349cae0d84c8ed51c249bfc1e6f2e28a2)

commit 63c1e291ef7ba97ce0dc7c0bdd46b81f71a52b9d
Author: Marton Balint 
Date:   Thu Nov 1 21:03:59 2018 +0100

    avformat/ftp: allow nonstandard 202 reply to OPTS UTF8
    
    Fixes ticket #7481.
    
    Signed-off-by: Marton Balint 
    (cherry picked from commit 8e5a2495a8dad262e0a00fbca09b7779b4ebf0bf)

commit 7ebc27e1fa73c4db3409166b3465825a613bfa86
Author: Michael Niedermayer 
Date:   Sun Nov 4 20:00:16 2018 +0100

    avcodec/cavsdec: Propagate error codes inside decode_mb_i()
    
    Fixes: Timeout
    Fixes: 10702/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CAVS_fuzzer-5669940938407936
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit c1cee0565692c541f589aefd7f375d37f55b9d94)
    Signed-off-by: Michael Niedermayer 

commit bc5777bdab7d5515088713f73507d3a49df7695d
Author: Michael Niedermayer 
Date:   Sun Nov 4 19:02:55 2018 +0100

    avcodec/mpeg4videodec: Clear partitioned frame in decode_studio_vop_header()
    
    partitioned_frame is also set/cleared in decode_vop_header()
    
    Fixes: out of array read
    Fixes: 9789/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEG4_fuzzer-5638681627983872
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 074187d599a2ece2bdf77bd08b4b797c5800eda6)
    Signed-off-by: Michael Niedermayer 

commit 7d23ccac8d371e7ea28960d23a812f6b8446a642
Author: Michael Niedermayer 
Date:   Sun Oct 28 21:08:39 2018 +0100

    avcodec/mpegaudio_parser: Consume more than 0 bytes in case of the unsupported mp3adu case
    
    Fixes: Timeout
    Fixes: 10966/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MP3ADU_fuzzer-5348695024336896
    Fixes: 10969/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MP3ADUFLOAT_fuzzer-5691669402877952
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit df91af140c5543cfbbed187f696e79b554d2c135)
    Signed-off-by: Michael Niedermayer 

commit 2f04b78b95464c46468c1d8c252f2360ffe7c183
Author: Michael Niedermayer 
Date:   Wed Oct 31 10:19:43 2018 +0100

    avcodec/prosumer: Simplify bit juggling of the c variable in decompress()
    
    Reviewed-by: Paul B Mahol 
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 66425add270cd262a22c0fdaf6aad09a0db6f8c0)
    Signed-off-by: Michael Niedermayer 

commit fd05e20650a50f3cd2b660367d0e73cb8fef9a07
Author: Michael Niedermayer 
Date:   Wed Oct 31 10:19:08 2018 +0100

    avcodec/prosumer: Remove always true check in decompress()
    
    Reviewed-by: Paul B Mahol 
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 1dfa0b6f36d29293f2d0219c4095dc8bb7a4b0dc)
    Signed-off-by: Michael Niedermayer 

commit a163384467ddaef143b86d611d3717ffbc4a0134
Author: Michael Niedermayer 
Date:   Wed Oct 31 10:18:45 2018 +0100

    avcodec/prosumer: Remove unneeded ()
    
    Reviewed-by: Paul B Mahol 
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 506839a3e9cc34c8f719937430008fc12d132fce)
    Signed-off-by: Michael Niedermayer 

commit b9875b75837dc75ba65254f1cdb0be50b1037d2d
Author: Michael Niedermayer 
Date:   Wed Oct 31 03:06:59 2018 +0100

    avcodec/prosumer: Check for bytestream eof in decompress()
    
    Fixes: Infinite loop
    Fixes: 10685/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PROSUMER_fuzzer-5652236881887232
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by: Paul B Mahol 
    Signed-off-by: Michael Niedermayer 
    (cherry picked from commit 9acdf17b2c30c44e6e6a3d3b3c22989b7e1117c3)
    Signed-off-by: Michael Niedermayer 

commit ebc1c49e417cf7d7096d7a038d1e3e61f0432f19
Author: Philip Langdale 
Date:   Fri Nov 2 14:08:18 2018 -0700

    avfilter/vf_cuda_yadif: Avoid new syntax for vector initialisation
    
    This requires a newer version of CUDA than we want to require.
    
    (cherry picked from commit 8e50215b5e02074b0773dfcf55867654ee59c179)

commit 6feec11e489b729a0ed7ead205e2aca6837d5f20
Author: Philip Langdale 
Date:   Wed Oct 24 18:38:44 2018 -0700

    avcodec/nvdec: Increase frame pool size to help deinterlacing
    
    With the cuda yadif filter in use, the number of mapped decoder
    frames could increase by two, as the filter holds on to additional
    frames.
    
    (cherry picked from commit 1b41115ef70896d9b98ce842dc5f21c465396ce2)

commit 67126555fc030e465806a84084e710f20c8a4775
Author: Philip Langdale 
Date:   Sun Oct 21 13:49:16 2018 -0700

    avfilter/vf_yadif_cuda: CUDA accelerated yadif deinterlacer
    
    This is a cuda implementation of yadif, which gives us a way to
    do deinterlacing when using the nvdec hwaccel. In that scenario
    we don't have access to the nvidia deinterlacer.
    
    (cherry picked from commit d5272e94ab22bfc8f01fa3174e2c4664161ddf5a)

commit 041231fcd632a33506689e44e5b45f29ac4ce050
Author: Philip Langdale 
Date:   Wed Oct 24 11:52:42 2018 -0700

    libavfilter/vf_yadif: Make frame management logic and options shareable
    
    I'm writing a cuda implementation of yadif, and while this
    obviously has a very different implementation of the actual
    filtering, all the frame management is unchanged. To avoid
    duplicating that logic, let's make it shareable.
    
    From the perspective of the existing filter, the only real change
    is introducing a function pointer for the filter() function so it
    can be specified for the specific filter.
    
    (cherry picked from commit 598f0f39271d6033588b4d8ccc672c5bdc85fec7)

commit 765fb1f224f61c563d3c82cfefbe44f43d452290
Author: Josh de Kock 
Date:   Tue Oct 30 14:38:42 2018 +0000

    fate/api-h264-slice-test: use cleaner error handling
    
    Signed-off-by: James Almer 
    (cherry picked from commit 1052578dadf72e400cee5ad2ad5dce899032d362)

commit 5060a615c7389808a4006e2d3e9acb9562d6ebec
Author: Josh de Kock 
Date:   Tue Oct 30 14:38:41 2018 +0000

    fate/api-h264-slice-test: don't use ssize_t
    
    Fixes ticket #7521
    
    Signed-off-by: James Almer 
    (cherry picked from commit 8096f52049acb1861645815a54435b9fd2d5e77a)

commit 1665ac6a446190c24c4875e2bab6f76132f7b05c
Author: Michael Niedermayer 
Date:   Fri Nov 2 01:36:21 2018 +0100

    RELEASE_NOTES: Based on the version from 4.0
    
    Signed-off-by: Michael Niedermayer 

commit 3c7e97343065fc728dbdba27c1c1abd41847bd12
Author: Michael Niedermayer 
Date:   Fri Nov 2 01:33:08 2018 +0100

    Update for 4.1
    
    Signed-off-by: Michael Niedermayer 

commit 780d5e30a0a0ad8d387e70e72195376e0064c4cf
Author: Michael Niedermayer 
Date:   Fri Nov 2 00:15:32 2018 +0100

    Bump minor versions for branching 4.1
    
    Signed-off-by: Michael Niedermayer 

commit 324d21164d499f946da8e1bd9a58c620e32fb3f8
Author: Michael Niedermayer 
Date:   Thu Nov 1 23:54:35 2018 +0100

    Changelog: next is 4.1
    
    Signed-off-by: Michael Niedermayer 

commit acf4fbddf3feaafcadf0b0343ce68aceb6886a1b
Author: Michael Niedermayer 
Date:   Thu Nov 1 23:53:01 2018 +0100

    doc/APIchanges: Update for 4.1
    
    Signed-off-by: Michael Niedermayer 

commit 6a034adf7516fde8733064ed7ba5c77554298047
Author: Marton Balint 
Date:   Thu Nov 1 20:48:55 2018 +0100

    avformat/ftp: return AVERROR_EOF for EOF
    
    Without this FTP just hangs on eof...
    
    Signed-off-by: Marton Balint 

commit 295fd12d17f339bdde0940d1f1885cf6db67e5d5
Author: Anton Platov 
Date:   Mon Oct 29 15:57:31 2018 +0300

    avdevice/libndi_newtek_dec: add extra_ips option to libndi_newtek allowing use remote network sources
    
    Signed-off-by: Anton Platov 
    Signed-off-by: Marton Balint 

commit cb74c33106d08b09ff0a2e395fe0b69828031d63
Author: BIGLER Don (Framatome) 
Date:   Thu Nov 1 17:49:37 2018 +0100

    avdevice/decklink_dec: fix codec_tag of RGBA formats
    
    Fixes ticket #7505.
    
    Signed-off-by: Marton Balint 

commit d98fb558be9c53ed6f34c21a59dc27a090153c1d
Author: Paul B Mahol 
Date:   Thu Nov 1 13:50:51 2018 +0100

    doc/filter: add some loop filter trivial examples

commit 4a976200d7853588336005a394dd31d905f5caf6
Author: Philip Langdale 
Date:   Wed Oct 31 16:58:09 2018 -0700

    avcodec/vdpau: Initialise driver version variable explicitly
    
    If the identification string ever changed, we might not match anything
    in the sscanf(). At least have predictable behaviour.

commit 2dee0679e9a88e1fea51ebd3dcd2bbbf6e1777d6
Author: Mark Thompson 
Date:   Sat Oct 27 22:39:47 2018 +0100

    cbs_h265: Add PTL parsing for Main 10 Still Picture profile
    
    This was added in the 2018 version of the standard.

commit 30fcc10937966cd24b253d4b8267c455f2212b8a
Author: Mark Thompson 
Date:   Sat Oct 27 22:39:46 2018 +0100

    cbs_h264: Include SEI type names in trace output

commit 793a3e7bc909ee96bb253950bce3d3b0e2e188a2
Author: Michael Niedermayer 
Date:   Tue Oct 23 23:31:24 2018 +0200

    doc/fate.texi: Mention that samples should be uploaded before pushing dependent commits
    
    Signed-off-by: Michael Niedermayer 

commit 323c2cfd384a06ad1e5233306156eb931185193f
Author: Paul B Mahol 
Date:   Sat Oct 27 19:17:08 2018 +0200

    avfilter: add (a)graphmonitor filter(s)

commit 4a6d5f3cadaabefe6c3548e575bb7e713997762f
Author: ManojGuptaBonda 
Date:   Mon Oct 29 13:39:54 2018 +0530

    avcodec/vdpau: Enable HEVC support for working Nvidia driver versions
    
    The driver bugs that caused decoded HEVC content to have an incorrect
    memory layout have been fully fixed in the 410.xx driver release so
    we can start exposing support.