From 343853a711ca2dded15f8a713370a61454f2627f Mon Sep 17 00:00:00 2001 From: Konstantinos Margaritis Date: Tue, 27 Sep 2022 10:08:09 +0000 Subject: [PATCH] comment out more debug messages and reference C function --- media/video/libvpx/vp8_dct4x4_wrappers.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/media/video/libvpx/vp8_dct4x4_wrappers.c b/media/video/libvpx/vp8_dct4x4_wrappers.c index 5eca70c3..b1b72090 100644 --- a/media/video/libvpx/vp8_dct4x4_wrappers.c +++ b/media/video/libvpx/vp8_dct4x4_wrappers.c @@ -8,10 +8,9 @@ void vp8_short_fdct4x4_svp64(int16_t *input, int16_t *output, int32_t pitch) { - printf("pitch: %d\n", pitch); +/* printf("pitch: %d\n", pitch); int16_t output2[16]; - vp8_short_fdct4x4_c(input, output2, pitch); - + vp8_short_fdct4x4_c(input, output2, pitch);*/ // It cannot be the same pointer as the original function, as it is really a separate CPU/RAM // we have to memcpy from input to this pointer, the address was chosen arbitrarily -- 2.30.2