This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

The following commit(s) were added to refs/heads/master by this push:
     new 268c37fdae avformat/iamf_writer: fix stream id log argument
268c37fdae is described below

commit 268c37fdae607be5d961708140f165cf26ca3483
Author:     Zhao Zhili <[email protected]>
AuthorDate: Mon May 18 17:57:32 2026 +0800
Commit:     Zhao Zhili <[email protected]>
CommitDate: Sat May 23 02:41:31 2026 +0800

    avformat/iamf_writer: fix stream id log argument
    
    Signed-off-by: Zhao Zhili <[email protected]>
---
 libavformat/iamf_writer.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/iamf_writer.c b/libavformat/iamf_writer.c
index 9b52bb29b7..3014f0daa1 100644
--- a/libavformat/iamf_writer.c
+++ b/libavformat/iamf_writer.c
@@ -114,7 +114,7 @@ static int fill_codec_config(IAMFContext *iamf, const 
AVStreamGroup *stg,
 
     if (!st->codecpar->frame_size) {
         av_log(log_ctx, AV_LOG_ERROR, "frame_size is unset for stream id %d\n",
-               st->codecpar->codec_id);
+               st->id);
         return AVERROR(EINVAL);
     }
 

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to