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:
parent
4f0689b528
commit
e145ce2027
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user