Commit 1e2802c5 authored by Ronald S. Bultje's avatar Ronald S. Bultje

Reindent after r14059, see "[PATCH] allow empty params for

av_open_input_stream()".

Originally committed as revision 14060 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e145ce20
......@@ -395,9 +395,9 @@ int av_open_input_stream(AVFormatContext **ic_ptr,
}
if (ic->iformat->read_header) {
err = ic->iformat->read_header(ic, ap);
if (err < 0)
goto fail;
err = ic->iformat->read_header(ic, ap);
if (err < 0)
goto fail;
}
if (pb && !ic->data_offset)
......
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