diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2008-07-03 12:12:03 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2008-07-03 12:12:03 +0000 |
commit | 1e2802c5cf65bab457e6bb8c9f13d6c57c1d5b93 (patch) | |
tree | c3508acdf271823ca2360584e67cb4563fe527c7 /libavformat | |
parent | e145ce202757dc4654c3e07e3f788dc385016074 (diff) | |
download | ffmpeg-1e2802c5cf65bab457e6bb8c9f13d6c57c1d5b93.tar.gz |
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
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 794babac4b..affb9125bc 100644 --- a/libavformat/utils.c +++ b/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) |