Commit f9739144 authored by Baptiste Coudurier's avatar Baptiste Coudurier

cosmetics, indentation

Originally committed as revision 15694 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a69b06be
...@@ -4019,11 +4019,11 @@ static int parse_ffconfig(const char *filename) ...@@ -4019,11 +4019,11 @@ static int parse_ffconfig(const char *filename)
} else if (!strcasecmp(cmd, "InputFormat")) { } else if (!strcasecmp(cmd, "InputFormat")) {
get_arg(arg, sizeof(arg), &p); get_arg(arg, sizeof(arg), &p);
if (stream) { if (stream) {
stream->ifmt = av_find_input_format(arg); stream->ifmt = av_find_input_format(arg);
if (!stream->ifmt) { if (!stream->ifmt) {
fprintf(stderr, "%s:%d: Unknown input format: %s\n", fprintf(stderr, "%s:%d: Unknown input format: %s\n",
filename, line_num, arg); filename, line_num, arg);
} }
} }
} else if (!strcasecmp(cmd, "FaviconURL")) { } else if (!strcasecmp(cmd, "FaviconURL")) {
if (stream && stream->stream_type == STREAM_TYPE_STATUS) { if (stream && stream->stream_type == STREAM_TYPE_STATUS) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment