Fix documentation for parse_link_name().

Originally committed as revision 24421 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefano Sabatini 2010-07-22 09:56:03 +00:00
parent bb90d855d7
commit 94b2120dfb

View File

@ -46,9 +46,10 @@ static int link_filter(AVFilterContext *src, int srcpad,
}
/**
* Parse "[linkname]"
* @param name a pointer (that need to be free'd after use) to the name between
* parenthesis
* Parse the name of a link, which has the format "[linkname]".
*
* @return a pointer (that need to be freed after use) to the name
* between parenthesis
*/
static char *parse_link_name(const char **buf, AVClass *log_ctx)
{