Commit 7eb07c44 authored by michael's avatar michael

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

while beliving it already is


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10042 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 96118c76
......@@ -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