summaryrefslogtreecommitdiff
path: root/libavformat/movenc.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-05-17 20:37:39 -0300
committerJames Almer <jamrial@gmail.com>2017-05-17 20:52:50 -0300
commit5ff31babfccd16cdee6575ae015ff67e9a08e35d (patch)
treef22caf613b52255031fc3a8ece3ae0dc8668956e /libavformat/movenc.c
parent6111ac73d9907101c5bfb7943675c76ee08f1789 (diff)
avformat/movenc: remove experimental check for VP9 streams
The muxer has been updated and is now complaint with the v1.0 of the spec.
Diffstat (limited to 'libavformat/movenc.c')
-rw-r--r--libavformat/movenc.c7
1 files changed, 0 insertions, 7 deletions
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;