This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 3fc7e39eb8b398652790899b3a65b71cbbd4875f Author: James Almer <[email protected]> AuthorDate: Sat Jan 31 11:55:05 2026 -0300 Commit: James Almer <[email protected]> CommitDate: Mon Feb 2 12:52:02 2026 -0300 avformat/cafenc: disable muxing Opus streams We're not writing a kuki chunk because its contents for Opus are currently unknown, so it's best if we don't allow the creation of non spec compliant files. Signed-off-by: James Almer <[email protected]> --- libavformat/cafenc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/cafenc.c b/libavformat/cafenc.c index 5f2d79e0a7..0e51600403 100644 --- a/libavformat/cafenc.c +++ b/libavformat/cafenc.c @@ -121,6 +121,7 @@ static int caf_write_init(struct AVFormatContext *s) switch (par->codec_id) { case AV_CODEC_ID_AAC: + case AV_CODEC_ID_OPUS: av_log(s, AV_LOG_ERROR, "muxing codec currently unsupported\n"); return AVERROR_PATCHWELCOME; } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
