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

Builder ffmpegsos-solaris10-i386 Build #13182

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisionbe82aef7cc7ec9f4655bca4a01cc2396eee60a62
Got Revisionbe82aef7cc7ec9f4655bca4a01cc2396eee60a62
Changes1 change

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 ( 7 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 3 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/slave/ffmpegsos-solaris10-i386 slave
buildername ffmpegsos-solaris10-i386 Builder
buildnumber 13182 Build
codebase Build
got_revision be82aef7cc7ec9f4655bca4a01cc2396eee60a62 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision be82aef7cc7ec9f4655bca4a01cc2396eee60a62 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. Ruikai Peng

Timing:

StartThu Jan 15 20:36:14 2026
EndThu Jan 15 20:36:30 2026
Elapsed16 secs

All Changes:

:

  1. Change #255355

    Category ffmpeg
    Changed by Ruikai Peng <ruikaiohnoyoudont@pwno.io>
    Changed at Thu 15 Jan 2026 20:32:52
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision be82aef7cc7ec9f4655bca4a01cc2396eee60a62

    Comments

    lavc/aacdec_usac: fix CPE channel index in ff_aac_usac_reset_state()
    fix a simple index bug in ff_aac_usac_reset_state()
    that writes past the end of ChannelElement.ch[2] for CPE
    
    ff_aac_usac_reset_state() loops over channels with j < ch, but
    incorrectly takes &che->ch[ch]. For CPE (ch == 2) this becomes
    che->ch[2], which is one past the end of ChannelElement.ch[2], and the
    subsequent memset() causes an intra-object out-of-bounds write.
    
    index the channel element with the loop variable (j).

    Changed files

    • libavcodec/aac/aacdec_usac.c