You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-11 14:30:22 +02:00
Simplify
Commited in SoC by Vitor Sessak on 2008-04-10 16:51:23 Originally committed as revision 13302 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -224,10 +224,9 @@ static int parse_inouts(const char **buf, AVFilterInOut **inout, int firstpad,
|
|||||||
|
|
||||||
static const char *skip_inouts(const char *buf)
|
static const char *skip_inouts(const char *buf)
|
||||||
{
|
{
|
||||||
while (*buf == '[') {
|
while (*buf == '[')
|
||||||
buf += strcspn(buf, "]");
|
buf += strcspn(buf, "]") + 1;
|
||||||
buf++;
|
|
||||||
}
|
|
||||||
return buf;
|
return buf;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user