diff --git a/source/planar_functions.cc b/source/planar_functions.cc index aaf0370b8..76bebd9db 100644 --- a/source/planar_functions.cc +++ b/source/planar_functions.cc @@ -240,6 +240,10 @@ int I420ToI400(const uint8* src_y, int dst_stride_y, int width, int height) { + (void)src_u; + (void)src_stride_u; + (void)src_v; + (void)src_stride_v; if (!src_y || !dst_y || width <= 0 || height == 0) { return -1; }