0
0
mirror of https://github.com/opencv/opencv.git synced 2026-01-18 17:21:42 +01:00

Disabled incorrect in-place flip HAL on RISC-V RVV.

This commit is contained in:
Alexander Smorkalov
2025-12-04 14:53:33 +03:00
parent 1d8d76cd50
commit e5075ffa33

View File

@@ -322,8 +322,10 @@ int flip(int src_type, const uchar* src_data, size_t src_step, int src_width, in
if (src_width < 0 || src_height < 0 || esz > 32)
return CV_HAL_ERROR_NOT_IMPLEMENTED;
// BUG: https://github.com/opencv/opencv/issues/28124
if (src_data == dst_data) {
return flip_inplace(esz, dst_data, dst_step, src_width, src_height, flip_mode);
return CV_HAL_ERROR_NOT_IMPLEMENTED;
//return flip_inplace(esz, dst_data, dst_step, src_width, src_height, flip_mode);
}
if (flip_mode == 0)