1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

avformat/movenc: remove experimental check for VP9 streams

The muxer has been updated and is now complaint with the v1.0 of the spec.
This commit is contained in:
James Almer 2017-05-17 20:37:39 -03:00
parent 6111ac73d9
commit 5ff31babfc
2 changed files with 1 additions and 7 deletions

View File

@ -13,6 +13,7 @@ version <next>:
- scale_cuda CUDA based video scale filter - scale_cuda CUDA based video scale filter
- librsvg support for svg rasterization - librsvg support for svg rasterization
- crossfeed audio filter - crossfeed audio filter
- spec compliant VP9 muxing support in MP4
version 3.3: version 3.3:
- CrystalHD decoder moved to new decode API - CrystalHD decoder moved to new decode API

View File

@ -5996,13 +5996,6 @@ static int mov_init(AVFormatContext *s)
av_log(s, AV_LOG_ERROR, "VP9 only supported in MP4.\n"); av_log(s, AV_LOG_ERROR, "VP9 only supported in MP4.\n");
return AVERROR(EINVAL); 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) { } else if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
track->timescale = st->codecpar->sample_rate; track->timescale = st->codecpar->sample_rate;