Browse Source

simplificate

Originally committed as revision 8786 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Alex Beregszaszi 18 years ago
parent
commit
5eb782f080
1 changed files with 3 additions and 5 deletions
  1. +3
    -5
      ffserver.c

+ 3
- 5
ffserver.c View File

@@ -3890,13 +3890,11 @@ static int parse_ffconfig(const char *filename)
feed->child_argv = (char **) av_mallocz(64 * sizeof(char *));

for (i = 0; i < 62; i++) {
char argbuf[256];

get_arg(argbuf, sizeof(argbuf), &p);
if (!argbuf[0])
get_arg(arg, sizeof(arg), &p);
if (!arg[0])
break;

feed->child_argv[i] = av_strdup(argbuf);
feed->child_argv[i] = av_strdup(arg);
}

feed->child_argv[i] = av_malloc(30 + strlen(feed->filename));


Loading…
Cancel
Save