This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit d7ee7ac20fb714732f0b07d5d043d104fcf65c19 Author: James Almer <[email protected]> AuthorDate: Mon Dec 29 16:04:25 2025 -0300 Commit: James Almer <[email protected]> CommitDate: Tue Dec 30 20:15:32 2025 -0300 avutil/iamf: remove default value from demixing_matrix_def It's not required sice the previous commit, and fixes memleaks introduced by a6e5fa3fbb5562f14a666964b77cb7560e1a92cd. Signed-off-by: James Almer <[email protected]> --- libavutil/iamf.c | 2 +- libavutil/version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavutil/iamf.c b/libavutil/iamf.c index c18069220e..ea0c87428f 100644 --- a/libavutil/iamf.c +++ b/libavutil/iamf.c @@ -239,7 +239,7 @@ AVIAMFParamDefinition *av_iamf_param_definition_alloc(enum AVIAMFParamDefinition // // Audio Element // -static const AVOptionArrayDef demixing_matrix_def = { .def = "0|0", .size_max = (255 + 255) * 255, .sep = '|' }; +static const AVOptionArrayDef demixing_matrix_def = { .size_max = (255 + 255) * 255, .sep = '|' }; #undef OFFSET #define OFFSET(x) offsetof(AVIAMFLayer, x) diff --git a/libavutil/version.h b/libavutil/version.h index 315189767c..e9ec6db96e 100644 --- a/libavutil/version.h +++ b/libavutil/version.h @@ -80,7 +80,7 @@ #define LIBAVUTIL_VERSION_MAJOR 60 #define LIBAVUTIL_VERSION_MINOR 21 -#define LIBAVUTIL_VERSION_MICRO 101 +#define LIBAVUTIL_VERSION_MICRO 102 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ LIBAVUTIL_VERSION_MINOR, \ _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
