]> git.sesse.net Git - ffmpeg/commitdiff
avformat/movenc: forbid muxing AV1 streams until the spec is finished
authorJames Almer <jamrial@gmail.com>
Mon, 16 Apr 2018 00:33:44 +0000 (21:33 -0300)
committerJames Almer <jamrial@gmail.com>
Mon, 16 Apr 2018 13:20:46 +0000 (10:20 -0300)
This prevents creating potentially broken files, as both the AV1 and
the AV1 in ISOMBFF specs are unfinished.

Signed-off-by: James Almer <jamrial@gmail.com>
libavformat/movenc.c

index d03d7906a170f987659bf413e04e8a36a0349db8..dc5c842cb85a7861d79a9a2c73001e6e9ac579c8 100644 (file)
@@ -6081,6 +6081,10 @@ static int mov_init(AVFormatContext *s)
                     av_log(s, AV_LOG_ERROR, "VP9 only supported in MP4.\n");
                     return AVERROR(EINVAL);
                 }
+            } else if (track->par->codec_id == AV_CODEC_ID_AV1) {
+                /* spec is not finished, so forbid for now */
+                av_log(s, AV_LOG_ERROR, "AV1 muxing is currently not supported.\n");
+                return AVERROR_PATCHWELCOME;
             } else if (track->par->codec_id == AV_CODEC_ID_VP8) {
                 /* altref frames handling is not defined in the spec as of version v1.0,
                  * so just forbid muxing VP8 streams altogether until a new version does */