diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-05-26 01:40:56 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-05-26 03:45:58 +0200 |
commit | 00931991849f2c7f250ea583c749493cf1b611fc (patch) | |
tree | 90e1b0e5318a62d47826429a547a814946284d35 /libswscale/utils.c | |
parent | 478455d66b80e335bdabc00df5dee298d630cbab (diff) | |
download | ffmpeg-00931991849f2c7f250ea583c749493cf1b611fc.tar.gz |
swscale: Remove commented-out printf cruft.
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r-- | libswscale/utils.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index 29fc975046..96b3207cdd 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -171,7 +171,6 @@ const char *sws_format_name(enum PixelFormat format) static double getSplineCoeff(double a, double b, double c, double d, double dist) { -// printf("%f %f %f %f %f\n", a,b,c,d,dist); if (dist<=1.0) return ((d*dist + c)*dist + b)*dist +a; else return getSplineCoeff( 0.0, b+ 2.0*c + 3.0*d, |