forked from FFmpeg/FFmpeg
humm, actually do what's in the doxy
Originally committed as revision 7427 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
fed7d06796
commit
c6efa4b5b0
1 changed files with 7 additions and 0 deletions
|
@ -2184,6 +2184,13 @@ int av_write_header(AVFormatContext *s)
|
|||
}
|
||||
}
|
||||
|
||||
if (s->oformat->priv_data_size > 0) {
|
||||
s->priv_data = av_mallocz(s->oformat->priv_data_size);
|
||||
if (!s->priv_data)
|
||||
return AVERROR_NOMEM;
|
||||
} else
|
||||
s->priv_data = NULL;
|
||||
|
||||
if(s->oformat->write_header){
|
||||
ret = s->oformat->write_header(s);
|
||||
if (ret < 0)
|
||||
|
|
Loading…
Add table
Reference in a new issue