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

Builder ffmpeg-solaris10-sparc Build #13176

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision53a9a34e23b730edd82e1d703c75f30d2a532bb6
Got Revision53a9a34e23b730edd82e1d703c75f30d2a532bb6
Changes2 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 11 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 ( 0 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config.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/ffmpeg-solaris10-sparc slave
buildername ffmpeg-solaris10-sparc Builder
buildnumber 13176 Build
codebase Build
got_revision 53a9a34e23b730edd82e1d703c75f30d2a532bb6 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 53a9a34e23b730edd82e1d703c75f30d2a532bb6 Build
scheduler schedule-ffmpeg-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpeg-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Andreas Rheinhardt

Timing:

StartSun Feb 22 22:44:40 2026
EndSun Feb 22 22:45:00 2026
Elapsed20 secs

All Changes:

:

  1. Change #258573

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 22 Feb 2026 22:05:15
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision bb92009386f0dc98e50e2ac949282a0986cce175

    Comments

    avcodec/snow: Only allocate emu_edge_buffer for encoder
    Also allocate it during init and move it to the encoder's context.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/snow.c
    • libavcodec/snow.h
    • libavcodec/snowenc.c
  2. Change #258574

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Sun 22 Feb 2026 22:05:16
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 53a9a34e23b730edd82e1d703c75f30d2a532bb6

    Comments

    avcodec/snow: Reduce sizeof(SnowContext)
    Each SubBand currently contains an array of 519 uint8_t[32],
    yet most of these are unused: For both the decoder and the
    encoder, at most 34 contexts are actually used: The only
    variable index is context+2, where context is the result
    of av_log2() and therefore in the 0..31 range.
    
    There are also several accesses using compile-time indices,
    the highest of which is 30. FATE passes with 31 contexts
    and maybe these are enough, but I don't know.
    
    Reducing the number to 34 reduces sizeof(SnowContext)
    from 2141664B to 155104B here (on x64).
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/snow.h