]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_crop.c
qsvenc: do not try to close the encoder if the session is NULL
[ffmpeg] / libavfilter / vf_crop.c
index 9e820d753fa793945bc0ada14f84f30ff5efe332..4122d52f889b190e6bac14892d8be0ddf91fd1f9 100644 (file)
@@ -265,7 +265,7 @@ static int filter_frame(AVFilterLink *link, AVFrame *frame)
     s->x &= ~((1 << s->hsub) - 1);
     s->y &= ~((1 << s->vsub) - 1);
 
-    av_dlog(ctx, "n:%d t:%f x:%d y:%d x+w:%d y+h:%d\n",
+    av_log(ctx, AV_LOG_TRACE, "n:%d t:%f x:%d y:%d x+w:%d y+h:%d\n",
             (int)s->var_values[VAR_N], s->var_values[VAR_T], s->x,
             s->y, s->x+s->w, s->y+s->h);