summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-05-24 20:41:22 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-05-24 20:41:22 +0000
commit487c0e67005e3a6c8a87cae1bd9d453e97f528a4 (patch)
tree3d0ef0d871f24bf5b989e7c849090feea9a732a9 /libavfilter
parentd9d086d9011b6ed13648285ed314f57f726268d5 (diff)
More cosmetics: make indentation more consistent
Commited in SoC by Vitor Sessak on 2008-04-23 19:14:08 Originally committed as revision 13336 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/graphparser.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c
index 69d7bc4d28..5a456a01c5 100644
--- a/libavfilter/graphparser.c
+++ b/libavfilter/graphparser.c
@@ -169,7 +169,7 @@ typedef struct AVFilterInOut {
static void free_inout(AVFilterInOut *head)
{
- while (head) {
+ while(head) {
AVFilterInOut *next = head->next;
av_free(head);
head = next;
@@ -271,7 +271,7 @@ static int parse_inputs(const char **buf, AVFilterInOut **currInputs,
{
int pad = 0;
- while (**buf == '[') {
+ while(**buf == '[') {
char *name;
AVFilterInOut *link_to_add;
AVFilterInOut *match;
@@ -317,7 +317,7 @@ static int parse_outputs(const char **buf, AVFilterInOut **currInputs,
{
int pad = 0;
- while (**buf == '[') {
+ while(**buf == '[') {
char *name;
AVFilterInOut *match;
@@ -424,7 +424,7 @@ int avfilter_parse_graph(AVFilterGraph *graph, const char *filters,
goto fail;
}
index++;
- } while (chr == ',' || chr == ';');
+ } while(chr == ',' || chr == ';');
if(openLinks && !strcmp(openLinks->name, "out") && currInputs) {
// Last output can be ommitted if it is "[out]"