[FFmpeg-soc] [soc]: r2061 - libavfilter/avfiltergraph.c
vitor
subversion at mplayerhq.hu
Sun Mar 30 17:46:38 CEST 2008
Author: vitor
Date: Sun Mar 30 17:46:38 2008
New Revision: 2061
Log:
Replace consume_char() function by *(*buf)++
Modified:
libavfilter/avfiltergraph.c
Modified: libavfilter/avfiltergraph.c
==============================================================================
--- libavfilter/avfiltergraph.c (original)
+++ libavfilter/avfiltergraph.c Sun Mar 30 17:46:38 2008
@@ -216,22 +216,6 @@ static void consume_whitespace(const cha
}
/**
- * get the next non-whitespace char
- */
-static char consume_char(const char **buf)
-{
- char out;
- consume_whitespace(buf);
-
- out = **buf;
-
- if (out)
- (*buf)++;
-
- return out;
-}
-
-/**
* Copy the first size bytes of input string to a null-terminated string,
* removing any control character. Ex: "aaa'bb'c\'c\\" -> "aaabbc'c\"
*/
@@ -304,14 +288,14 @@ static char *consume_string(const char *
*/
static void parse_link_name(const char **buf, char **name)
{
- consume_char(buf);
+ (*buf)++;
*name = consume_string(buf);
if (!*name[0])
goto fail;
- if (consume_char(buf) != ')')
+ if (*(*buf)++ != ')')
goto fail;
return;
@@ -333,7 +317,7 @@ static int parse_filter(const char **buf
name = consume_string(buf);
if (**buf == '=') {
- consume_char(buf);
+ (*buf)++;
opts = consume_string(buf);
} else {
opts = NULL;
@@ -393,8 +377,8 @@ static int parse_inouts(const char **buf
*/
int avfilter_graph_parse_chain(AVFilterGraph *graph, const char *filters, AVFilterContext *in, int inpad, AVFilterContext *out, int outpad)
{
- AVFilterInOut *inout=NULL;
- AVFilterInOut *head=NULL;
+ AVFilterInOut *inout=NULL;
+ AVFilterInOut *head=NULL;
int index = 0;
char chr = 0;
@@ -434,7 +418,7 @@ int avfilter_graph_parse_chain(AVFilterG
}
pad = parse_inouts(&filters, &inout, 0, LinkTypeOut, index);
- chr = consume_char(&filters);
+ chr = *filters++;
index++;
} while (chr == ',' || chr == ';');
More information about the FFmpeg-soc
mailing list