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

Builder ffmpeg-solaris10-sparc Build #13167

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 1 mins, 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 ( 28 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 ( 2 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 13167 Build
codebase Build
got_revision cff9f29d5b566d607a880a0e0f2ce349ab07280e Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision cff9f29d5b566d607a880a0e0f2ce349ab07280e 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. Niklas Haas

Timing:

StartSat Feb 21 12:57:12 2026
EndSat Feb 21 12:58:50 2026
Elapsed1 mins, 37 secs

All Changes:

:

  1. Change #258414

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Sat 21 Feb 2026 12:47:43
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 5c661dec6187e6e4a4dd80a9cad551ea202df407

    Comments

    swscale/ops: avoid UB in ff_sws_pixel_expand()
    Restructure the loop slightly to avoid UB in the first loop iteration if
    src is 4 bytes, which otherwise computes (0 << 32) | 1. Instead, make
    1 the default base case and only shift+add if src < dst.
    
    Add an explicit check to preserve the behavior of returnin 0 if src > dst.

    Changed files

    • libswscale/ops_internal.h
  2. Change #258415

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Sat 21 Feb 2026 12:47:43
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision cff9f29d5b566d607a880a0e0f2ce349ab07280e

    Comments

    swscale/ops_optimizer: add sanity checks to scale->expand conversion
    This only works for integer types.

    Changed files

    • libswscale/ops_optimizer.c