From: Zhao Zhili via ffmpeg-devel <ffmpeg-devel@ffmpeg.org> To: ffmpeg-devel@ffmpeg.org Cc: Zhao Zhili <code@ffmpeg.org> Subject: [FFmpeg-devel] [PATCH] avformat/mov: fix missing video size when some decoders are disabled (PR #20669) Date: Wed, 08 Oct 2025 15:55:40 -0000 Message-ID: <175993894139.65.13012520161862592685@bf249f23a2c8> (raw) PR #20669 opened by Zhao Zhili (quink) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20669 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20669.patch Fix #20667 The first version of patch was right, sorry I suggested the wrong direction. https://patchwork.ffmpeg.org/project/ffmpeg/patch/20250722124552.885-1-15083277223@163.com/ >From e47f7019bf56b998a142675356a98b94065a3476 Mon Sep 17 00:00:00 2001 From: Zhao Zhili <zhilizhao@tencent.com> Date: Wed, 8 Oct 2025 23:31:11 +0800 Subject: [PATCH] avformat/mov: fix missing video size when some decoders are disabled Fix #20667 --- libavformat/mov.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index 7fe4678234..922e001e5e 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -5243,16 +5243,22 @@ static int mov_read_trak(MOVContext *c, AVIOContext *pb, MOVAtom atom) #endif } +#if CONFIG_H261_DECODER || CONFIG_H263_DECODER || CONFIG_MPEG4_DECODER switch (st->codecpar->codec_id) { +#if CONFIG_H261_DECODER case AV_CODEC_ID_H261: +#endif +#if CONFIG_H263_DECODER case AV_CODEC_ID_H263: +#endif +#if CONFIG_MPEG4_DECODER case AV_CODEC_ID_MPEG4: +#endif st->codecpar->width = 0; /* let decoder init width/height */ st->codecpar->height= 0; break; - default: - break; } +#endif // If the duration of the mp3 packets is not constant, then they could need a parser if (st->codecpar->codec_id == AV_CODEC_ID_MP3 -- 2.49.1 _______________________________________________ ffmpeg-devel mailing list -- ffmpeg-devel@ffmpeg.org To unsubscribe send an email to ffmpeg-devel-leave@ffmpeg.org
reply other threads:[~2025-10-08 15:56 UTC|newest] Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=175993894139.65.13012520161862592685@bf249f23a2c8 \ --to=ffmpeg-devel@ffmpeg.org \ --cc=code@ffmpeg.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel This inbox may be cloned and mirrored by anyone: git clone --mirror http://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 ffmpegdev ffmpegdev/ http://master.gitmailbox.com/ffmpegdev \ ffmpegdev@gitmailbox.com public-inbox-index ffmpegdev Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git