[FFmpeg-soc] [soc]: r629 - libavfilter/vf_crop.c
koorogi
subversion at mplayerhq.hu
Wed Aug 8 07:58:21 CEST 2007
Author: koorogi
Date: Wed Aug 8 07:58:21 2007
New Revision: 629
Log:
Remove soem debug messages
Modified:
libavfilter/vf_crop.c
Modified: libavfilter/vf_crop.c
==============================================================================
--- libavfilter/vf_crop.c (original)
+++ libavfilter/vf_crop.c Wed Aug 8 07:58:21 2007
@@ -136,7 +136,6 @@ static void start_frame(AVFilterLink *li
}
}
- av_log(link->dst, AV_LOG_INFO, "start_frame()\n");
link->cur_pic = picref;
avfilter_start_frame(link->dst->outputs[0], ref2);
@@ -146,8 +145,6 @@ static void end_frame(AVFilterLink *link
{
avfilter_unref_pic(link->cur_pic);
link->cur_pic = NULL;
-
- av_log(link->dst, AV_LOG_INFO, "end_frame()\n");
avfilter_end_frame(link->dst->outputs[0]);
}
@@ -162,8 +159,6 @@ static void draw_slice(AVFilterLink *lin
int height = h;
int i;
- av_log(link->dst, AV_LOG_INFO, "draw_slice()\n");
-
if(y >= crop->cy + crop->ch || y + h <= crop->cy) return;
memcpy(src, data, sizeof(uint8_t *) * 4);
More information about the FFmpeg-soc
mailing list