From 549e798ac79b15bda1ff68869b399b8d05accceb Mon Sep 17 00:00:00 2001 From: George Steed Date: Mon, 25 Mar 2024 09:54:06 +0000 Subject: [PATCH] [AArch64] Remove declarations of P{210,410}To{ARGB,AR30}Row_NEON These declarations appear to exist in error since there is no corresponding implementation of these kernels and nothing calls them. So simply remove the declarations until we get around to adding an implementation. Change-Id: I0a9d72e7e13398b689e3e47ef101f672082c4795 Reviewed-on: https://chromium-review.googlesource.com/c/libyuv/libyuv/+/5387649 Commit-Queue: Frank Barchard Reviewed-by: Frank Barchard --- include/libyuv/row.h | 40 ---------------------------------------- 1 file changed, 40 deletions(-) diff --git a/include/libyuv/row.h b/include/libyuv/row.h index 46685a507..a622e3185 100644 --- a/include/libyuv/row.h +++ b/include/libyuv/row.h @@ -4983,46 +4983,6 @@ void UYVYToARGBRow_Any_NEON(const uint8_t* src_ptr, uint8_t* dst_ptr, const struct YuvConstants* yuvconstants, int width); -void P210ToARGBRow_NEON(const uint16_t* y_buf, - const uint16_t* uv_buf, - uint8_t* dst_argb, - const struct YuvConstants* yuvconstants, - int width); -void P410ToARGBRow_NEON(const uint16_t* y_buf, - const uint16_t* uv_buf, - uint8_t* dst_argb, - const struct YuvConstants* yuvconstants, - int width); -void P210ToAR30Row_NEON(const uint16_t* y_buf, - const uint16_t* uv_buf, - uint8_t* dst_ar30, - const struct YuvConstants* yuvconstants, - int width); -void P410ToAR30Row_NEON(const uint16_t* y_buf, - const uint16_t* uv_buf, - uint8_t* dst_ar30, - const struct YuvConstants* yuvconstants, - int width); -void P210ToARGBRow_Any_NEON(const uint16_t* y_buf, - const uint16_t* uv_buf, - uint8_t* dst_argb, - const struct YuvConstants* yuvconstants, - int width); -void P410ToARGBRow_Any_NEON(const uint16_t* y_buf, - const uint16_t* uv_buf, - uint8_t* dst_argb, - const struct YuvConstants* yuvconstants, - int width); -void P210ToAR30Row_Any_NEON(const uint16_t* y_buf, - const uint16_t* uv_buf, - uint8_t* dst_ar30, - const struct YuvConstants* yuvconstants, - int width); -void P410ToAR30Row_Any_NEON(const uint16_t* y_buf, - const uint16_t* uv_buf, - uint8_t* dst_ar30, - const struct YuvConstants* yuvconstants, - int width); void I444ToARGBRow_Any_MSA(const uint8_t* y_buf, const uint8_t* u_buf, const uint8_t* v_buf,