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

Builder ffmpegsos-solaris10-sparc Build #13822

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision2f0848c9bb49dd08b259489d774c0da98558d891
Got Revision2f0848c9bb49dd08b259489d774c0da98558d891
Changes5 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 42 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 ( 10 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 13822 Build
codebase Build
got_revision 2f0848c9bb49dd08b259489d774c0da98558d891 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 2f0848c9bb49dd08b259489d774c0da98558d891 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 Aug 14 09:04:13 2026
EndFri Aug 14 09:05:09 2026
Elapsed55 secs

All Changes:

:

  1. Change #278137

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Fri 14 Aug 2026 10:41:40
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision dab32dcc2129b80df7190cdfc1063b3940c711af

    Comments

    avutil/slicethread: add return value to slicethread callbacks
    Several places in the code currently manually roll the return value
    saving. This small signature change allows slicethread.c to collect
    return values directly. Unlike the existing solutions which mostly
    rely on collecting the return values in an array, we can just use an
    atomic CAS to set the error iff no error has been set already.
    
    We need a slight bit of extra complication to avoid breaking the ABI,
    which requires keeping around the old names as deprecated aliases that
    just set up the appropriate wrappers. However, fortunately, the way I
    implemented the deprecated signatures allows callers to freely mix
    avpriv_slicethread_execute() and avpriv_slicethread_execute2(), even
    on contexts created with one or the other.
    
    It's worth pointing out that this commit just changes the signatures,
    but doesn't yet update the various to use the return value.
    
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libavcodec/pthread_slice.c
    • libavfilter/pthread.c
    • libavutil/slicethread.c
    • libavutil/slicethread.h
    • libswscale/cms.c
    • libswscale/graph.c
    • libswscale/swscale.c
    • libswscale/swscale_internal.h
    • libswscale/utils.c
  2. Change #278138

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Fri 14 Aug 2026 10:41:40
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 37083b3105acebcdfbd8b9e2046e971db5d108c2

    Comments

    swscale/utils: add ff_sws_thread_exec() helper
    Simplified API that wraps slicethread create/execute/free, with
    fallback for systems without threading support.
    
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/swscale_internal.h
    • libswscale/utils.c
  3. Change #278139

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Fri 14 Aug 2026 10:41:40
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 183c14e20e8049b34f140bd0f5b4a7e3b24433e8

    Comments

    swscale: simplify slice_ctx error propagation
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/swscale.c
    • libswscale/swscale_internal.h
    • libswscale/utils.c
  4. Change #278140

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Fri 14 Aug 2026 10:41:40
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 0c7b5b2b5cdf34ec3805984e44cfc520771873ab

    Comments

    swscale/ops: use slice threading for ff_sws_enum_op_lists()
    Enabled by the existing SwsContext.threads option.
    
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/op_list_gen_template.c
  5. Change #278141

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Fri 14 Aug 2026 10:41:40
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 2f0848c9bb49dd08b259489d774c0da98558d891

    Comments

    swscale/uops: use threading to speed up macros generation
    26.74s -> 4.18s on my laptop
    
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/uops_macros_gen.c