comment out more debug messages and reference C function
[openpower-isa.git] / media / video / libvpx / vp8_dct4x4_wrappers.c
index 5eca70c39f8cb1c3d2e4414a23c2649b9871cf26..b1b720908c1f22ff00a1417427e2f6db7baa9077 100644 (file)
@@ -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