This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 55b510c702fc4857da96420fe1405817b6847ea5 Author: James Almer <[email protected]> AuthorDate: Tue Jun 2 12:08:44 2026 -0300 Commit: James Almer <[email protected]> CommitDate: Thu Jun 4 14:18:35 2026 +0000 avcodec/aacenc: fix signaled channel pairing for 6.1 PCE layout Signed-off-by: James Almer <[email protected]> --- libavcodec/aacenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/aacenc.c b/libavcodec/aacenc.c index 210eff215a..2c8965095c 100644 --- a/libavcodec/aacenc.c +++ b/libavcodec/aacenc.c @@ -235,7 +235,7 @@ static const AACPCEInfo aac_pce_configs[] = { { .layout = AV_CHANNEL_LAYOUT_6POINT1_BACK, .num_ele = { 2, 0, 2, 1 }, - .pairing = { { 0, 1 },{ 1, 0 },{ 0 }, }, + .pairing = { { 0, 1 },{ 0 },{ 1, 0 },{ 0 } }, .index = { { 0, 0 },{ 0 },{ 1, 1 },{ 0 } }, .config_map = { 5, TYPE_SCE, TYPE_CPE, TYPE_CPE, TYPE_SCE, TYPE_LFE }, .reorder_map = { 2, 0, 1, 4, 5, 6, 3 }, _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
