Commit 79cbfe17 authored by vitor's avatar vitor

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12096 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f72fc52b
...@@ -161,7 +161,7 @@ struct AVFilterPad ...@@ -161,7 +161,7 @@ struct AVFilterPad
* *
* Input video pads only. * Input video pads only.
*/ */
void (*draw_slice)(AVFilterLink *link, uint8_t *data[4], int y, int height); void (*draw_slice)(AVFilterLink *link, int y, int height);
/** /**
* Frame request callback. A call to this should result in at least one * Frame request callback. A call to this should result in at least one
...@@ -330,11 +330,10 @@ void avfilter_end_frame(AVFilterLink *link); ...@@ -330,11 +330,10 @@ void avfilter_end_frame(AVFilterLink *link);
/** /**
* Send a slice to the next filter * Send a slice to the next filter
* @param link The output link over which the frame is being sent * @param link The output link over which the frame is being sent
* @param data Start of the picture data for this slice
* @param y Offset in pixels from the top of the image for this slice * @param y Offset in pixels from the top of the image for this slice
* @param h Height of this slice in pixels * @param h Height of this slice in pixels
*/ */
void avfilter_draw_slice(AVFilterLink *link, uint8_t *data[4], int y, int h); void avfilter_draw_slice(AVFilterLink *link, int y, int h);
/** Initialize the filter system. Registers all builtin filters */ /** Initialize the filter system. Registers all builtin filters */
void avfilter_init(void); void avfilter_init(void);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment