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

Builder ffmpegsos-solaris10-sparc Build #13011

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 3 mins, 24 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_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 13011 Build
codebase Build
got_revision 47f89ea88ba1ae9a9ac5b1b9bfa6063dfbd8c73a Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 47f89ea88ba1ae9a9ac5b1b9bfa6063dfbd8c73a 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. Niklas Haas

Timing:

StartFri Mar 6 19:18:55 2026
EndFri Mar 6 19:22:29 2026
Elapsed3 mins, 33 secs

All Changes:

:

  1. Change #260057

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Fri 06 Mar 2026 19:06:33
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 47f89ea88ba1ae9a9ac5b1b9bfa6063dfbd8c73a

    Comments

    swscale: explicitly track if a context is "legacy" or not
    The legacy API is defined by sws_init_context(), sws_scale() etc., whereas
    the "modern" API is defined by just using sws_scale_frame() without prior
    init call.
    
    This int allows us to cleanly distinguish the type of context, paving the
    way for some minor refactoring.
    
    As an immediate benefit, we now gain a bunch of explict error checks to
    ensure the API is used correctly (i.e. sws_scale() not called before
    sws_init_context()).
    
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/swscale.c
    • libswscale/swscale_internal.h
    • libswscale/utils.c