Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder ffmpegsos-solaris10-sparc Build #12542

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision16050a1cef818d02542ea52a14ad96ca890ffb2d
Got Revision16050a1cef818d02542ea52a14ad96ca890ffb2d
Changes3 changes

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpegsos-solaris10-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 8 secs )
    1. stdio
  2. shell 'gsed -i ...' ( 0 secs )
    1. stdio
  3. shell_1 'gsed -i ...' ( 0 secs )
    1. stdio
  4. shell_2 'gsed -i ...' failed ( 0 secs )
    1. stdio
  5. shell_3 './configure --samples="../../../ffmpeg/fate-suite" ...' failed ( 11 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 0 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config_sos.sh' failed ( 0 secs )
    1. stdio
    2. configure.log
    3. compile.log
    4. test.log

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/ffmpegsos-solaris10-sparc slave
buildername ffmpegsos-solaris10-sparc Builder
buildnumber 12542 Build
codebase Build
got_revision 16050a1cef818d02542ea52a14ad96ca890ffb2d Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 16050a1cef818d02542ea52a14ad96ca890ffb2d Build
scheduler schedule-ffmpegsos-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpegsos-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. James Almer

Timing:

StartTue Dec 9 22:18:12 2025
EndTue Dec 9 22:18:33 2025
Elapsed21 secs

All Changes:

:

  1. Change #251688

    Category ffmpeg
    Changed by James Almer <jamrialohnoyoudont@gmail.com>
    Changed at Tue 09 Dec 2025 21:54:11
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 2d5abf27e5b0bf48a779368499d754f130bae4f4

    Comments

    avformat/iamf_parse: fix parsing of Scalable layouts with Mono and Stereo layers
    An ASAN heap-buffer-overflow in scalable_channel_layout_config was caused by an
    unchecked assumption that the channel layout of a scalable audio layer is a
    superset of the previous layer's channel layout.
    
    scalable_channel_layout_config constructs a channel layout map by copying
    channels from the previous layer and adding new ones. The memory allocation is
    based on the target loudspeaker_layout. However, if the target layout doesn't
    encompass all previous channels (e.g., Mono to Stereo), copying previous
    channels followed by adding current ones could exceed the allocated size,
    causing a heap buffer overflow.
    
    This commit adds an exception for the know case of Mono -> Stereo, and a check
    to ensure the previous layer's channel layout is a subset of the current
    layer's layout by comparing their masks. If the condition isn't met,
    an error is returned.
    
    Fixes: https://issues.oss-fuzz.com/issues/464965414
    
    Co-authored-by: Oliver Chang <ochang@google.com>
    Signed-off-by: James Almer <jamrial@gmail.com>

    Changed files

    • libavformat/iamf_parse.c
  2. Change #251689

    Category ffmpeg
    Changed by James Almer <jamrialohnoyoudont@gmail.com>
    Changed at Tue 09 Dec 2025 21:54:11
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 5cdc1cad77bad7d3ecda9e18e888cf7b12a0725c

    Comments

    avformat/iamf_parse: add a few extra sanity checks
    Signed-off-by: James Almer <jamrial@gmail.com>

    Changed files

    • libavformat/iamf_parse.c
  3. Change #251690

    Category ffmpeg
    Changed by James Almer <jamrialohnoyoudont@gmail.com>
    Changed at Tue 09 Dec 2025 21:54:11
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 16050a1cef818d02542ea52a14ad96ca890ffb2d

    Comments

    avformat/iamf_writer: ensure expanded_loudspeaker_layout is only written when using a single scalable layout layer
    Signed-off-by: James Almer <jamrial@gmail.com>

    Changed files

    • libavformat/iamf_writer.c