Remove the data parameter from draw_slice(). It's unneeded and often more

work than it's worth.

Commited in SoC by Bobby Bingham on 2007-08-17 14:39:11

Originally committed as revision 12006 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Vitor Sessak 2008-02-15 21:37:52 +00:00
parent 7a61cc4d4b
commit ef35d13a84
1 changed files with 2 additions and 2 deletions

View File

@ -179,12 +179,12 @@ void avfilter_end_frame(AVFilterLink *link)
end_frame(link);
}
void avfilter_draw_slice(AVFilterLink *link, uint8_t *data[4], int y, int h)
void avfilter_draw_slice(AVFilterLink *link, int y, int h)
{
if(!link->dst->input_pads[link->dstpad].draw_slice)
return;
link->dst->input_pads[link->dstpad].draw_slice(link, data, y, h);
link->dst->input_pads[link->dstpad].draw_slice(link, y, h);
}
static int filter_cmp(const void *aa, const void *bb)