Browse code

avformat/movenc: remove experimental check for VP9 streams

The muxer has been updated and is now complaint with the v1.0 of the spec.

James Almer authored on 2017/05/18 08:37:39
Showing 2 changed files
... ...
@@ -13,6 +13,7 @@ version <next>:
13 13
 - scale_cuda CUDA based video scale filter
14 14
 - librsvg support for svg rasterization
15 15
 - crossfeed audio filter
16
+- spec compliant VP9 muxing support in MP4
16 17
 
17 18
 version 3.3:
18 19
 - CrystalHD decoder moved to new decode API
... ...
@@ -5996,13 +5996,6 @@ static int mov_init(AVFormatContext *s)
5996 5996
                     av_log(s, AV_LOG_ERROR, "VP9 only supported in MP4.\n");
5997 5997
                     return AVERROR(EINVAL);
5998 5998
                 }
5999
-                if (s->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
6000
-                    av_log(s, AV_LOG_ERROR,
6001
-                           "VP9 in MP4 support is experimental, add "
6002
-                           "'-strict %d' if you want to use it.\n",
6003
-                           FF_COMPLIANCE_EXPERIMENTAL);
6004
-                    return AVERROR_EXPERIMENTAL;
6005
-                }
6006 5999
             }
6007 6000
         } else if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
6008 6001
             track->timescale = st->codecpar->sample_rate;