[FFmpeg-cvslog] avcodec/motion_est_template: Avoid using last + 1 element of array

2022-10-24 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri Oct 21 16:40:37 2022 +0200| [7c5d256c9c6f8361cd9dde24544b61cec177b3ec] | committer: Andreas Rheinhardt avcodec/motion_est_template: Avoid using last + 1 element of array For an int array[8][2] using &array[8][0] (which is an int* pointing to t

[FFmpeg-cvslog] avcodec/snow_dwt: Fix left shifts of negative numbers

2022-10-24 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri Oct 21 16:08:16 2022 +0200| [c76155236fdfab9eb02ac30d2d03380a0648fb84] | committer: Andreas Rheinhardt avcodec/snow_dwt: Fix left shifts of negative numbers Affected the vsynth(1|2|_lena)-snow(|-hpel) tests. Signed-off-by: Andreas Rheinhardt

[FFmpeg-cvslog] avutil/integer: Fix undefined left shifts of negative numbers

2022-10-24 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri Oct 21 19:54:27 2022 +0200| [9a6cdd1ba3bd6fe592761dc7e9e6b5273495d048] | committer: Andreas Rheinhardt avutil/integer: Fix undefined left shifts of negative numbers Affected the integers FATE-test. Signed-off-by: Andreas Rheinhardt > http:/

[FFmpeg-cvslog] avutil/aes: Don't use misaligned pointers

2022-10-24 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri Oct 21 17:52:30 2022 +0200| [73930e4f93032bf6638e9561042b49864070b101] | committer: Andreas Rheinhardt avutil/aes: Don't use misaligned pointers The AES code uses av_aes_block, a union consisting of uint64_t[2], uint32_t[4], uint8_t[4][4] and

[FFmpeg-cvslog] avutil/aes: Don't use out-of-bounds index

2022-10-24 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri Oct 21 18:59:36 2022 +0200| [f49375f28ff22af19d8a259bd21def5e876dc97b] | committer: Andreas Rheinhardt avutil/aes: Don't use out-of-bounds index Up until now, av_aes_init() uses a->round_key[0].u8 + t as dst of memcpy where it is intended for

[FFmpeg-cvslog] avutil/integer: Use '|' instead of '+' where it is more natural

2022-10-24 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri Oct 21 20:25:55 2022 +0200| [d7c3e52fbfca2656b361682dca38ae577a10e8b7] | committer: Andreas Rheinhardt avutil/integer: Use '|' instead of '+' where it is more natural Signed-off-by: Andreas Rheinhardt > http://git.videolan.org/gitweb.cgi/ffm

[FFmpeg-cvslog] lavc/qsvenc: fix check to avoid segfault

2022-10-24 Thread Haihao Xiang
ffmpeg | branch: master | Haihao Xiang | Tue Oct 18 12:59:23 2022 +0800| [76965fa41177658444c334ebbe0ae11eafd8c796] | committer: Haihao Xiang lavc/qsvenc: fix check to avoid segfault Signed-off-by: Haihao Xiang > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=76965fa41177658444c33

[FFmpeg-cvslog] lavc/qsvenc: enlarge the maximum number of ExtParam buffers on mfxEncodeCtrl

2022-10-24 Thread Haihao Xiang
ffmpeg | branch: master | Haihao Xiang | Tue Oct 18 12:59:24 2022 +0800| [dc26bd8e6d01a344df47e8ae9b156d6a97d451cc] | committer: Haihao Xiang lavc/qsvenc: enlarge the maximum number of ExtParam buffers on mfxEncodeCtrl The next commit and other commits in future will use more ExtParam buffers.

[FFmpeg-cvslog] lavc/qsvenc_hevc: accept HDR metadata if have

2022-10-24 Thread Haihao Xiang
ffmpeg | branch: master | Haihao Xiang | Tue Oct 18 12:59:25 2022 +0800| [1af499cde0958264d4cc03f0ff6371c5ae8edbf4] | committer: Haihao Xiang lavc/qsvenc_hevc: accept HDR metadata if have The SDK may accept HDR metadata via mfxEncodeCtrl::ExtParam Signed-off-by: Haihao Xiang > http://git.vi