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
This commit is contained in:
Ronald S. Bultje 2008-07-03 12:12:03 +00:00
parent e145ce2027
commit 1e2802c5cf
1 changed files with 3 additions and 3 deletions

View File

@ -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)