Break over-80-chars-long line.

Originally committed as revision 20320 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefano Sabatini 2009-10-19 19:22:08 +00:00
parent 72017ea1dc
commit c0da46c8e0
1 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,8 @@
#include "avfilter.h"
static AVFilterPicRef *get_video_buffer(AVFilterLink *link, int perms, int w, int h)
static AVFilterPicRef *get_video_buffer(AVFilterLink *link, int perms,
int w, int h)
{
return avfilter_get_video_buffer(link->dst->outputs[0], perms, w, h);
}