Wenbin Chen
76b33704b6
avcodec/mpegvideo_enc: Fix a chroma mb size error in sse_mb()
...
For 422 frames we should not use hard coded 8 to calculate mb size for
uv plane. Chroma shift should be taken into consideration to be
compatiple with different sampling format.
The error is reported by fate test when av_cpu_max_align() return 64
on the platform supporting AVX512. This is a hidden error and it is
exposed after commit 17a59a634c .
mpeg2enc has a mechanism to reuse frames. When it computes SSE (sum of
squared error) on current mb, reconstructed mb will be wrote to the
previous mb space, so that the memory can be saved. However if the align
is 64, the frame is shared in somewhere else, so the frame cannot be
reused and a new frame to store reconstrued data is created. Because the
height of mb is wrong when compute sse on 422 frame, starting from the
second line of macro block, changed data is read when frame is reused
(we need to read row 16 rather than row 8 if frame is 422), and unchanged
data is read when frame is not reused (a new frame is created so the
original frame will not be changed).
That is why commit 17a59a634c exposes this
issue, because it add av_cpu_max_align() and this function return 64 on
platform supporting AVX512 which lead to creating a frame in mpeg2enc,
and this lead to the different outputs.
Signed-off-by: Wenbin Chen <wenbin.chen@intel.com >
Signed-off-by: Marton Balint <cus@passwd.hu >
2022-07-09 21:05:02 +02:00
..
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2019-12-21 11:57:28 -03:00
2017-03-17 11:55:16 +01:00
2017-03-17 11:55:16 +01:00
2022-05-12 11:19:12 +02:00
2015-03-19 17:30:28 +01:00
2016-07-24 12:31:07 +02:00
2016-07-24 12:31:07 +02:00
2015-10-02 18:08:36 +02:00
2015-10-13 02:10:51 +02:00
2017-03-24 15:44:01 +01:00
2015-10-02 18:08:36 +02:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2020-04-13 12:59:06 -07:00
2016-08-12 23:26:33 +02:00
2016-08-12 23:26:33 +02:00
2016-08-12 23:26:33 +02:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2016-07-24 12:31:07 +02:00
2017-08-08 19:39:21 +02:00
2017-08-08 19:39:21 +02:00
2017-08-08 19:39:21 +02:00
2019-11-13 09:08:43 -08:00
2020-09-13 17:51:57 +02:00
2016-06-29 07:21:07 +02:00
2022-05-30 12:13:29 +02:00
2015-08-31 16:14:38 +02:00
2015-08-31 16:14:38 +02:00
2020-10-06 17:56:52 +02:00
2015-08-31 16:14:38 +02:00
2015-08-31 16:14:38 +02:00
2015-08-31 16:14:38 +02:00
2015-03-19 17:30:28 +01:00
2017-10-23 23:00:05 +02:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2016-02-23 17:01:58 +01:00
2016-02-23 17:01:58 +01:00
2015-07-09 00:49:20 +02:00
2015-07-09 00:49:20 +02:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2020-08-30 16:18:37 +02:00
2020-08-30 16:18:37 +02:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2017-04-09 00:00:39 +01:00
2017-04-09 00:00:39 +01:00
2017-04-09 00:00:39 +01:00
2017-02-08 13:59:53 +00:00
2017-04-09 00:00:39 +01:00
2017-02-08 13:59:53 +00:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2014-04-01 20:52:37 +02:00
2014-04-01 20:52:37 +02:00
2014-06-06 22:54:22 +02:00
2022-07-09 21:05:02 +02:00
2014-06-06 22:54:22 +02:00
2014-06-06 22:54:22 +02:00
2014-06-06 22:54:22 +02:00
2014-06-06 22:54:22 +02:00
2014-06-06 22:54:22 +02:00
2022-06-24 15:37:23 +08:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2020-10-06 17:56:52 +02:00
2017-03-17 11:55:16 +01:00
2014-07-06 23:34:58 +02:00
2015-05-10 14:19:56 +02:00
2015-05-10 14:19:56 +02:00
2015-03-19 17:30:28 +01:00
2019-12-21 11:57:28 -03:00
2017-03-17 11:55:16 +01:00
2017-03-17 11:55:16 +01:00
2017-03-17 11:55:16 +01:00
2017-03-17 11:55:16 +01:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2016-02-10 17:22:26 +01:00
2017-03-17 11:55:16 +01:00
2017-03-17 11:55:16 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2019-12-21 11:57:28 -03:00
2017-03-17 11:55:16 +01:00
2017-03-17 11:55:16 +01:00
2022-05-12 11:19:12 +02:00
2015-03-19 17:30:28 +01:00
2016-07-24 12:31:07 +02:00
2016-07-24 12:31:07 +02:00
2015-10-02 18:08:36 +02:00
2015-10-13 02:10:51 +02:00
2016-07-24 12:31:07 +02:00
2015-10-02 18:08:36 +02:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2020-04-13 12:59:06 -07:00
2016-08-12 23:26:33 +02:00
2016-08-12 23:26:33 +02:00
2016-08-12 23:26:33 +02:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2016-07-24 12:31:07 +02:00
2017-08-08 19:39:21 +02:00
2017-08-08 19:39:21 +02:00
2017-08-08 19:39:21 +02:00
2019-11-13 09:08:43 -08:00
2020-09-13 17:51:57 +02:00
2016-06-29 07:21:07 +02:00
2022-05-30 12:13:29 +02:00
2015-08-31 16:14:38 +02:00
2015-08-31 16:14:38 +02:00
2020-10-06 17:56:52 +02:00
2015-08-31 16:14:38 +02:00
2015-08-31 16:14:38 +02:00
2015-08-31 16:14:38 +02:00
2015-03-19 17:30:28 +01:00
2017-10-23 23:00:05 +02:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2016-02-23 17:01:58 +01:00
2014-12-02 03:39:56 +01:00
2016-02-23 17:01:58 +01:00
2015-07-09 00:49:20 +02:00
2015-07-09 00:49:20 +02:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2020-08-30 16:18:37 +02:00
2020-08-30 16:18:37 +02:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2017-04-09 00:00:39 +01:00
2017-04-09 00:00:39 +01:00
2017-04-09 00:00:39 +01:00
2017-02-08 13:59:53 +00:00
2017-04-09 00:00:39 +01:00
2017-02-08 13:59:53 +00:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2014-12-02 03:39:56 +01:00
2014-12-02 03:39:56 +01:00
2014-12-02 03:39:56 +01:00
2022-07-09 21:05:02 +02:00
2014-12-02 03:39:56 +01:00
2014-12-02 03:39:56 +01:00
2014-12-02 03:39:56 +01:00
2014-12-02 03:39:56 +01:00
2014-12-02 03:39:56 +01:00
2022-06-24 15:37:23 +08:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2020-10-06 17:56:52 +02:00
2017-03-17 11:55:16 +01:00
2014-12-02 03:39:56 +01:00
2014-12-02 03:39:56 +01:00
2014-12-02 03:39:56 +01:00
2015-05-10 14:19:56 +02:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2019-12-21 11:57:28 -03:00
2017-03-17 11:55:16 +01:00
2017-03-17 11:55:16 +01:00
2017-03-17 11:55:16 +01:00
2017-03-17 11:55:16 +01:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2016-02-10 17:22:26 +01:00
2017-03-17 11:55:16 +01:00
2017-03-17 11:55:16 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2017-03-17 11:55:16 +01:00
2017-03-17 11:55:16 +01:00
2015-03-19 17:30:28 +01:00
2016-07-24 12:31:07 +02:00
2016-07-24 12:31:07 +02:00
2016-07-24 12:31:07 +02:00
2019-12-21 11:57:28 -03:00
2020-04-13 12:59:06 -07:00
2016-08-12 23:26:33 +02:00
2016-08-12 23:26:33 +02:00
2016-08-12 23:26:33 +02:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2016-07-24 12:31:07 +02:00
2019-11-13 09:08:43 -08:00
2020-09-13 17:51:57 +02:00
2015-04-26 21:23:14 +02:00
2022-05-30 12:13:29 +02:00
2015-08-31 16:14:38 +02:00
2015-08-31 16:14:38 +02:00
2020-10-06 17:56:52 +02:00
2015-08-31 16:14:38 +02:00
2015-08-31 16:14:38 +02:00
2015-08-31 16:14:38 +02:00
2015-03-19 17:30:28 +01:00
2017-10-23 23:00:05 +02:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2014-06-10 20:24:49 +02:00
2014-06-10 20:24:49 +02:00
2014-06-10 20:24:49 +02:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2020-08-30 16:18:37 +02:00
2020-08-30 16:18:37 +02:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2017-04-09 00:00:39 +01:00
2017-04-09 00:00:39 +01:00
2017-04-09 00:00:39 +01:00
2017-02-08 13:59:53 +00:00
2017-04-09 00:00:39 +01:00
2017-02-08 13:59:53 +00:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2014-06-10 20:24:49 +02:00
2014-06-10 20:24:49 +02:00
2014-06-10 20:24:49 +02:00
2022-07-09 21:05:02 +02:00
2014-06-10 20:24:49 +02:00
2014-06-11 05:02:46 +02:00
2014-06-10 20:24:49 +02:00
2014-06-11 05:02:46 +02:00
2014-06-11 05:02:46 +02:00
2022-06-24 15:37:23 +08:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2020-10-06 17:56:52 +02:00
2017-03-17 11:55:16 +01:00
2019-12-21 11:57:28 -03:00
2017-03-17 11:55:16 +01:00
2017-03-17 11:55:16 +01:00
2017-03-17 11:55:16 +01:00
2017-03-17 11:55:16 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2016-02-10 17:22:26 +01:00
2017-03-17 11:55:16 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2019-12-21 11:57:28 -03:00
2017-03-17 11:55:16 +01:00
2017-03-17 11:55:16 +01:00
2022-05-12 11:19:12 +02:00
2015-03-19 17:30:28 +01:00
2016-07-24 12:31:07 +02:00
2016-07-24 12:31:07 +02:00
2015-10-02 18:08:36 +02:00
2015-10-13 02:10:51 +02:00
2016-07-24 12:31:07 +02:00
2015-10-02 18:08:36 +02:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2020-04-13 13:34:49 -07:00
2016-08-12 23:26:33 +02:00
2016-08-12 23:26:33 +02:00
2016-08-12 23:26:33 +02:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2016-07-24 12:31:07 +02:00
2017-08-08 19:39:21 +02:00
2017-08-08 19:39:21 +02:00
2017-08-08 19:39:21 +02:00
2019-11-13 23:34:56 +01:00
2020-09-13 17:51:57 +02:00
2015-04-26 21:23:14 +02:00
2022-05-30 12:13:29 +02:00
2015-08-31 16:14:38 +02:00
2015-08-31 16:14:38 +02:00
2020-10-06 17:56:52 +02:00
2015-08-31 16:14:38 +02:00
2015-08-31 16:14:38 +02:00
2015-08-31 16:14:38 +02:00
2015-03-19 17:30:28 +01:00
2017-10-23 23:00:05 +02:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2014-12-02 03:02:30 +01:00
2014-12-02 03:02:30 +01:00
2014-12-02 03:02:30 +01:00
2015-07-09 00:49:20 +02:00
2015-07-09 00:49:20 +02:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2020-08-30 16:18:37 +02:00
2020-08-30 16:18:37 +02:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2017-04-09 00:00:39 +01:00
2017-04-09 00:00:39 +01:00
2017-04-09 00:00:39 +01:00
2017-02-08 13:59:53 +00:00
2017-04-09 00:00:39 +01:00
2017-02-08 13:59:53 +00:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2014-12-02 03:02:30 +01:00
2014-12-02 03:02:30 +01:00
2014-12-02 03:02:30 +01:00
2022-07-09 21:05:02 +02:00
2014-12-02 03:02:30 +01:00
2014-12-02 03:02:30 +01:00
2014-12-02 03:02:30 +01:00
2014-12-02 03:02:30 +01:00
2014-12-02 03:02:30 +01:00
2022-06-24 15:37:23 +08:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2020-10-06 17:56:52 +02:00
2017-03-17 11:55:16 +01:00
2014-12-02 03:02:30 +01:00
2014-12-02 03:02:30 +01:00
2014-12-02 03:02:30 +01:00
2015-05-10 14:19:56 +02:00
2015-05-10 14:19:56 +02:00
2015-03-19 17:30:28 +01:00
2019-12-21 11:57:28 -03:00
2017-03-17 11:55:16 +01:00
2017-03-17 11:55:16 +01:00
2017-03-17 11:55:16 +01:00
2017-03-17 11:55:16 +01:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2019-12-21 11:57:28 -03:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00
2016-02-10 17:22:26 +01:00
2017-03-17 11:55:16 +01:00
2017-03-17 11:55:16 +01:00
2015-03-19 17:30:28 +01:00
2015-03-19 17:30:28 +01:00