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

Builder ffmpegsos-solaris10-i386 Build #13508

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisionbd9590db701259f84ed712bc46868c60ed7502a9
Got Revisionbd9590db701259f84ed712bc46868c60ed7502a9
Changes10 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 7 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 ( 13 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 1 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 13508 Build
codebase Build
got_revision bd9590db701259f84ed712bc46868c60ed7502a9 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision bd9590db701259f84ed712bc46868c60ed7502a9 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. Niklas Haas

Timing:

StartMon Mar 9 12:05:22 2026
EndMon Mar 9 12:05:47 2026
Elapsed25 secs

All Changes:

:

  1. Change #260414

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Mon 09 Mar 2026 12:01:51
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 97682155e6f84b2e157a1b167768d0ffb5a94554

    Comments

    swscale/vulkan/ops: move buffer desc setting to helper function
    And call it on the read/write ops directly, rather than this awkward loop.
    
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/vulkan/ops.c
  2. Change #260415

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Mon 09 Mar 2026 12:01:51
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision fdc0a66cbddd5b673ea44216646f80f3ad17586b

    Comments

    swscale/graph: skip threading for single-slice passes
    This condition was weaker than necessary.
    
    In particular, graph->num_thread == 1 guarantees pass->num_slices == 1.
    
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/graph.c
  3. Change #260416

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Mon 09 Mar 2026 12:01:51
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 254c07bf604dc738c39290a07b1f7be6c489b302

    Comments

    swscale/graph: rename sws_filter_run_t to SwsPassFunc
    This name is weirdly out-of-place in the libswscale naming convention.
    
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/graph.c
    • libswscale/graph.h
  4. Change #260417

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Mon 09 Mar 2026 12:01:51
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 5b8889f4e8f734c64098f35f4f91c28315115e61

    Comments

    swscale/graph: add typedef for SwsPassSetup
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/graph.h
  5. Change #260418

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Mon 09 Mar 2026 12:01:51
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 42a47838ea3b6973c1cdc70f3d86870f2cf6e1e2

    Comments

    swscale/graph: add setup()/free() to ff_sws_graph_add_pass() signature
    This is just slightly common enough a pattern that it IMO makes sense to do
    so. This will also make more sense after the following commits.
    
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/graph.c
    • libswscale/graph.h
    • libswscale/ops_dispatch.c
  6. Change #260419

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Mon 09 Mar 2026 12:01:51
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 2e2983383229cb5dc0f185993848ced36ed27d28

    Comments

    swscale/graph: have ff_sws_graph_add_pass() free priv on failure
    This is arguably more convenient for most downstream users, as will be
    more prominently seen in the next commit.
    
    Also allows this code to re-use a pass_free() helper with the graph uninit.
    
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/graph.c
    • libswscale/graph.h
    • libswscale/ops_dispatch.c
  7. Change #260420

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Mon 09 Mar 2026 12:01:51
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 9571f5cf15ff83a0f1fd95ad11e1878b4d8dd4bc

    Comments

    swscale/graph: simplify ff_sws_graph_add_pass() usages
    Now that this function returns a status code and takes care of cleanup on
    failure, many call-sites can just return the function directly.
    
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/graph.c
    • libswscale/ops_dispatch.c
  8. Change #260421

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Mon 09 Mar 2026 12:01:51
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 911176c880e5a277a0350f00db90e19914b8ebe9

    Comments

    swscale/ops_dispatch: add SwsCompiledFunc.opaque
    Allows compiled functions to opt out of the ops_dispatch execution harness
    altogether and just get dispatched directly as the pass run() function.
    
    Useful in particular for Vulkan.
    
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/ops_dispatch.c
    • libswscale/ops_dispatch.h
  9. Change #260422

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Mon 09 Mar 2026 12:01:51
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 143cb5650123d2aa8db22b7f5fc095bfef393e79

    Comments

    swscale/vulkan/ops: use opaque run function
    Avoids some unnecessary round-trips through the execution harness, as well
    as removing one unnecessary layer of abstraction (SwsOpExec).
    
    It's a bit unfortunate that we have to cast away the const on the AVFrame,
    since the Vulkan functions take non-const everywhere, even though all they're
    doing is modifying frame internal metadata, but alas.
    
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/vulkan/ops.c
  10. Change #260423

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Mon 09 Mar 2026 12:01:51
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision bd9590db701259f84ed712bc46868c60ed7502a9

    Comments

    swscale/ops_dispatch: remove unnecessary SwsOpExec fields
    These were abstraction-violating in the first place. Good riddance.
    
    This partially reverts commit c911295f096c8dcf0dc29239d0915ce92f2454b5.
    
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/ops_dispatch.c
    • libswscale/ops_dispatch.h
    • libswscale/x86/ops_common.asm