Commit 100d8eb8 authored by Michael Niedermayer's avatar Michael Niedermayer

muxer is not yet fully compliant so prevent people from mistakenly using it

while believing it already is

Originally committed as revision 10042 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent ee7db7b0
......@@ -335,6 +335,10 @@ static int write_header(AVFormatContext *s){
ByteIOContext *bc = &s->pb;
int i, j;
if(s->streams[0]->codec->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL){
return -1;
}
nut->avf= s;
nut->stream = av_mallocz(sizeof(StreamContext)*s->nb_streams);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment