[FFmpeg-cvslog] avformat/movenc: remove experimental check for VP9 streams

James Almer git at videolan.org
Thu May 18 02:53:07 EEST 2017


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Wed May 17 20:37:39 2017 -0300| [5ff31babfccd16cdee6575ae015ff67e9a08e35d] | committer: James Almer

avformat/movenc: remove experimental check for VP9 streams

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

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5ff31babfccd16cdee6575ae015ff67e9a08e35d
---

 Changelog            | 1 +
 libavformat/movenc.c | 7 -------
 2 files changed, 1 insertion(+), 7 deletions(-)

diff --git a/Changelog b/Changelog
index ff982e5db2..475a0a80c9 100644
--- a/Changelog
+++ b/Changelog
@@ -13,6 +13,7 @@ version <next>:
 - scale_cuda CUDA based video scale filter
 - librsvg support for svg rasterization
 - crossfeed audio filter
+- spec compliant VP9 muxing support in MP4
 
 version 3.3:
 - CrystalHD decoder moved to new decode API
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index a6c0662cd0..ba901fbb0f 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -5996,13 +5996,6 @@ static int mov_init(AVFormatContext *s)
                     av_log(s, AV_LOG_ERROR, "VP9 only supported in MP4.\n");
                     return AVERROR(EINVAL);
                 }
-                if (s->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
-                    av_log(s, AV_LOG_ERROR,
-                           "VP9 in MP4 support is experimental, add "
-                           "'-strict %d' if you want to use it.\n",
-                           FF_COMPLIANCE_EXPERIMENTAL);
-                    return AVERROR_EXPERIMENTAL;
-                }
             }
         } else if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
             track->timescale = st->codecpar->sample_rate;



More information about the ffmpeg-cvslog mailing list