[SCM] libav/experimental: Use '[' and ']' for label naming Commited in SoC by Vitor Sessak on 2008-04-06 19:02:56
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 16:21:18 UTC 2013
The following commit has been merged in the experimental branch:
commit d7ff2297184e455cca90cc830d1a8be2bb6f0f2b
Author: Vitor Sessak <vitor1001 at gmail.com>
Date: Sat May 24 20:39:22 2008 +0000
Use '[' and ']' for label naming
Commited in SoC by Vitor Sessak on 2008-04-06 19:02:56
Originally committed as revision 13297 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c
index 2f0dd3e..2007b62 100644
--- a/libavfilter/graphparser.c
+++ b/libavfilter/graphparser.c
@@ -117,8 +117,8 @@ static char *consume_string(const char **buf)
if(*in) in++;
break;
case 0:
- case ')':
- case '(':
+ case ']':
+ case '[':
case '=':
case ',':
*out++= 0;
@@ -146,7 +146,7 @@ static void parse_link_name(const char **buf, char **name)
if (!*name[0])
goto fail;
- if (*(*buf)++ != ')')
+ if (*(*buf)++ != ']')
goto fail;
return;
@@ -211,7 +211,7 @@ static int parse_inouts(const char **buf, AVFilterInOut **inout, int firstpad,
enum LinkType type, AVFilterContext *filter)
{
int pad = firstpad;
- while (**buf == '(') {
+ while (**buf == '[') {
AVFilterInOut *inoutn = av_malloc(sizeof(AVFilterInOut));
parse_link_name(buf, &inoutn->name);
inoutn->type = type;
@@ -225,8 +225,8 @@ static int parse_inouts(const char **buf, AVFilterInOut **inout, int firstpad,
static const char *skip_inouts(const char *buf)
{
- while (*buf == '(') {
- buf += strcspn(buf, ")");
+ while (*buf == '[') {
+ buf += strcspn(buf, "]");
buf++;
}
return buf;
diff --git a/libavfilter/graphparser.h b/libavfilter/graphparser.h
index 4f494af..7dda160 100644
--- a/libavfilter/graphparser.h
+++ b/libavfilter/graphparser.h
@@ -35,6 +35,6 @@
* @param inpad pad index of the output
* @return zero on success, -1 on error
*/
-int avfilter_graph_parse_chain(AVFilterGraph *graph, const char *filters, AVFilterContext *in, int inpad, AVFilterContext *out, int outpad);
+int avfilter_parse_graph(AVFilterGraph *graph, const char *filters, AVFilterContext *in, int inpad, AVFilterContext *out, int outpad);
#endif /* FFMPEG_GRAPHPARSER_H */
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list