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

Builder ffmpegsos-solaris10-i386 Build #13546

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisione1d9080e6a3c967a1bc7a01ec9a2bd586e6750d9
Got Revisione1d9080e6a3c967a1bc7a01ec9a2bd586e6750d9
Changes4 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 4 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 ( 8 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 ( 4 secs )
    1. stdio
    2. configure.log
    3. compile.log
    4. test.log

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Gil Portnoy
  2. Oliver Chang

Timing:

StartFri Mar 13 23:27:04 2026
EndFri Mar 13 23:27:23 2026
Elapsed18 secs

All Changes:

:

  1. Change #261002

    Category ffmpeg
    Changed by Oliver Chang <ochangohnoyoudont@google.com>
    Changed at Fri 13 Mar 2026 22:57:25
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision d519ab89931212b4137e65b1530ebfca1d1fbbf9

    Comments

    aacdec_usac: skip FD-specific decoding for LPD channels
    `spectrum_decode` currently executes Frequency Domain (FD) decoding steps
    for all channels, regardless of their `core_mode`. When a channel is in
    Linear Prediction Domain (LPD) mode (`core_mode == 1`), FD-specific
    parameters such as scalefactor offsets (`sfo`) and individual channel
    stream (`ics`) information are not parsed.
    
    This causes a global-buffer-overflow in `dequant_scalefactors`. Because
    `spectrum_scale` is called on LPD channels, it uses stale or
    uninitialized `sfo` values to index `ff_aac_pow2sf_tab`. In the reported
    crash, a stale `sfo` value of 240 resulted in an index of 440
    (240 + POW_SF2_ZERO), exceeding the table's size of 428.
    
    Fix this by ensuring `spectrum_scale` and `imdct_and_windowing` are only
    called for channels where `core_mode == 0` (FD).
    
    Co-authored-by: CodeMender <codemender-patching@google.com>
    Fixes: https://issues.oss-fuzz.com/486160985

    Changed files

    • libavcodec/aac/aacdec_usac.c
  2. Change #261003

    Category ffmpeg
    Changed by Gil Portnoy <dddhkts1ohnoyoudont@gmail.com>
    Changed at Fri 13 Mar 2026 23:03:35
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 8b9851b005abeab60f1c87d1770c5fd7e0084c14

    Comments

    avcodec/aac/aacdec_usac_mps212: Off-by-one bounds check in ff_aac_ec_data_deci()
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
    
    No testcase, the check seems redundant

    Changed files

    • libavcodec/aac/aacdec_usac_mps212.c
  3. Change #261004

    Category ffmpeg
    Changed by Gil Portnoy <dddhkts1ohnoyoudont@gmail.com>
    Changed at Fri 13 Mar 2026 23:03:36
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision d75b7c225280f270d4ba82acd76c94833f638f21

    Comments

    avcodec/aac/aacdec_usac_mps212: Fix typo in huff_data_2d()
    This is not a security issue
    
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libavcodec/aac/aacdec_usac_mps212.c
  4. Change #261005

    Category ffmpeg
    Changed by Gil Portnoy <dddhkts1ohnoyoudont@gmail.com>
    Changed at Fri 13 Mar 2026 23:03:36
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision e1d9080e6a3c967a1bc7a01ec9a2bd586e6750d9

    Comments

    avcodec/aac/aacdec_usac_mps212: Fix wrong end_band parameter to coarse_to_fine()
    note, all call sites set start_band=0, this is thus a cosmetic fix
    
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libavcodec/aac/aacdec_usac_mps212.c