Allow NULL for read_header in AVInputFormat. See discussion in "[PATCH] allow

empty params for av_open_input_stream()".

Originally committed as revision 14059 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ronald S. Bultje 2008-07-03 12:10:54 +00:00
parent 4f0689b528
commit e145ce2027
1 changed files with 2 additions and 0 deletions

View File

@ -394,9 +394,11 @@ int av_open_input_stream(AVFormatContext **ic_ptr,
ic->priv_data = NULL;
}
if (ic->iformat->read_header) {
err = ic->iformat->read_header(ic, ap);
if (err < 0)
goto fail;
}
if (pb && !ic->data_offset)
ic->data_offset = url_ftell(ic->pb);