Mercurial > mplayer.hg
changeset 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 | b66e1f2c1ef8 |
files | libswscale/swscale.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
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; }