On date Friday 2011-05-27 20:37:07 +0200, Diego Biurrun encoded:
> ---
>  libavfilter/vf_crop.c |    8 +++-----
>  1 files changed, 3 insertions(+), 5 deletions(-)
> 
> diff --git a/libavfilter/vf_crop.c b/libavfilter/vf_crop.c
> index 9f71b9e..69e5a52 100644
> --- a/libavfilter/vf_crop.c
> +++ b/libavfilter/vf_crop.c
> @@ -264,11 +264,9 @@ static void start_frame(AVFilterLink *link, 
> AVFilterBufferRef *picref)
>      crop->x &= ~((1 << crop->hsub) - 1);
>      crop->y &= ~((1 << crop->vsub) - 1);
>  
> -#ifdef DEBUG
> -    av_log(ctx, AV_LOG_DEBUG,
> -           "n:%d t:%f x:%d y:%d x+w:%d y+h:%d\n",
> -           (int)crop->var_values[VAR_N], crop->var_values[VAR_T], crop->x, 
> crop->y, crop->x+crop->w, crop->y+crop->h);
> -#endif
> +    av_dlog(ctx, "n:%d t:%f x:%d y:%d x+w:%d y+h:%d\n",
> +            (int)crop->var_values[VAR_N], crop->var_values[VAR_T], crop->x,
> +            crop->y, crop->x+crop->w, crop->y+crop->h);

OK of course.
-- 
NEVER swerve to hit a lawyer riding a bicycle -- it might be your bicycle.
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to