diff libswscale/swscale.c @ 28532:e5a0c2f38f96

Use sws_printVec2() instead of the deprecated sws_printVec().
author stefano
date Sat, 14 Feb 2009 20:18:50 +0000
parents a14b65e14dc9
children 8226498f4e24
line wrap: on
line diff
--- a/libswscale/swscale.c	Sat Feb 14 20:14:28 2009 +0000
+++ b/libswscale/swscale.c	Sat Feb 14 20:18:50 2009 +0000
@@ -2880,8 +2880,8 @@
     sws_normalizeVec(filter->lumH, 1.0);
     sws_normalizeVec(filter->lumV, 1.0);
 
-    if (verbose) sws_printVec(filter->chrH);
-    if (verbose) sws_printVec(filter->lumH);
+    if (verbose) sws_printVec2(filter->chrH, NULL, AV_LOG_DEBUG);
+    if (verbose) sws_printVec2(filter->lumH, NULL, AV_LOG_DEBUG);
 
     return filter;
 }