# HG changeset patch # User michael # Date 1186704696 0 # Node ID 0bf0afe32fccad2181d5f03ded04278857b0523a # Parent 3dfa90f47d539c257aeb5c535d0410a393a27ebd muxer is not yet fully compliant so prevent people from mistakenly using it while believing it already is diff -r 3dfa90f47d53 -r 0bf0afe32fcc nutenc.c --- a/nutenc.c Thu Aug 09 23:41:59 2007 +0000 +++ b/nutenc.c Fri Aug 10 00:11:36 2007 +0000 @@ -335,6 +335,10 @@ 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);