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
pull/126/head
Ronald S. Bultje 17 years ago
parent e145ce2027
commit 1e2802c5cf
  1. 6
      libavformat/utils.c

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

Loading…
Cancel
Save