Skip to content

Commit

Permalink
avformat/movenc: remove experimental check for VP9 streams
Browse files Browse the repository at this point in the history
The muxer has been updated and is now complaint with the v1.0 of the spec.
  • Loading branch information
jamrial committed May 17, 2017
1 parent 6111ac7 commit 5ff31ba
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
1 change: 1 addition & 0 deletions Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 0 additions & 7 deletions libavformat/movenc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 5ff31ba

Please sign in to comment.