]> git.sesse.net Git - ffmpeg/commitdiff
lavfi/curves: remove pointless logging since the addition of plot option
authorClément Bœsch <u@pkh.me>
Fri, 22 Jul 2016 20:01:37 +0000 (22:01 +0200)
committerClément Bœsch <u@pkh.me>
Sun, 24 Jul 2016 10:18:30 +0000 (12:18 +0200)
libavfilter/vf_curves.c

index 84df448123e2cf2236f21f3414ea74d79fbaf678..d58ba42074d0cfe4399c10235e06fb1d1646edbd 100644 (file)
@@ -501,11 +501,6 @@ static av_cold int init(AVFilterContext *ctx)
                 av_log(ctx, AV_LOG_VERBOSE, " (%f;%f)", point->x, point->y);
                 point = point->next;
             }
-            av_log(ctx, AV_LOG_VERBOSE, "\n");
-            av_log(ctx, AV_LOG_VERBOSE, "#%d values:", i);
-            for (j = 0; j < 256; j++)
-                av_log(ctx, AV_LOG_VERBOSE, " %02X", curves->graph[i][j]);
-            av_log(ctx, AV_LOG_VERBOSE, "\n");
         }
     }