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 2c1af16872 avformat/matroskaenc: Use correct buffer for smpte2094_app5
2c1af16872 is described below
commit 2c1af168728c91ceebbb9e87e61498546d4f9f82
Author: Vignesh Venkat <[email protected]>
AuthorDate: Mon May 11 14:43:12 2026 -0700
Commit: Vignesh Venkat <[email protected]>
CommitDate: Mon May 11 14:44:25 2026 -0700
avformat/matroskaenc: Use correct buffer for smpte2094_app5
In the call to mkv_write_blockadditional, use the correct
buffer for smpte2094_app5.
Commit 38df985fba3a5d5072d60afc67f164f1e2bd4211 updated the
buffer usage to prevent incorrect buffer reuse, but left this line
unchanged inadvertently.
Signed-off-by: Vignesh Venkat <[email protected]>
---
libavformat/matroskaenc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c
index b90485a528..67f39023ce 100644
--- a/libavformat/matroskaenc.c
+++ b/libavformat/matroskaenc.c
@@ -2960,7 +2960,7 @@ static int mkv_write_block(void *logctx,
MatroskaMuxContext *mkv,
if (ret < 0)
return ret;
- mkv_write_blockadditional(&writer, t35_buf, payload_size + 5,
+ mkv_write_blockadditional(&writer, smpte_2094_app5_buf,
payload_size + 5,
MATROSKA_BLOCK_ADD_ID_ITU_T_T35);
track->max_blockaddid = FFMAX(track->max_blockaddid,
MATROSKA_BLOCK_ADD_ID_ITU_T_T35);
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]