mirror of https://git.ffmpeg.org/ffmpeg.git
Simplify
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:
parent
c245ddf23f
commit
ce657d80cc
|
@ -272,10 +272,8 @@ void avfilter_draw_slice(AVFilterLink *link, int y, int h)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!link_dpad(link).draw_slice)
|
if(link_dpad(link).draw_slice)
|
||||||
return;
|
link_dpad(link).draw_slice(link, y, h);
|
||||||
|
|
||||||
link_dpad(link).draw_slice(link, y, h);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
AVFilter *avfilter_get_by_name(const char *name)
|
AVFilter *avfilter_get_by_name(const char *name)
|
||||||
|
|
Loading…
Reference in New Issue