1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-10-08 10:26:55 +02:00
Commited in SoC by Vitor Sessak on 2008-02-11 17:35:13

Originally committed as revision 12056 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Vitor Sessak 2008-02-15 21:41:35 +00:00
parent c245ddf23f
commit ce657d80cc

View File

@ -272,10 +272,8 @@ void avfilter_draw_slice(AVFilterLink *link, int y, int h)
}
}
if(!link_dpad(link).draw_slice)
return;
link_dpad(link).draw_slice(link, y, h);
if(link_dpad(link).draw_slice)
link_dpad(link).draw_slice(link, y, h);
}
AVFilter *avfilter_get_by_name(const char *name)