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

Builder ffmpeg64-solaris10-sparc Build #13011

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision3ccafa5906578c59db287886d2288ea45fc61704
Got Revision3ccafa5906578c59db287886d2288ea45fc61704
Changes4 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 8 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 ( 11 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_64.sh' failed ( 3 secs )
    1. stdio
    2. configure.log
    3. compile.log
    4. test.log

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/ffmpeg64-solaris10-sparc slave
buildername ffmpeg64-solaris10-sparc Builder
buildnumber 13011 Build
codebase Build
got_revision 3ccafa5906578c59db287886d2288ea45fc61704 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 3ccafa5906578c59db287886d2288ea45fc61704 Build
scheduler schedule-ffmpeg64-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpeg64-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Lynne

Timing:

StartMon Jan 19 17:16:38 2026
EndMon Jan 19 17:17:04 2026
Elapsed25 secs

All Changes:

:

  1. Change #255678

    Category ffmpeg
    Changed by Lynne <devohnoyoudont@lynne.ee>
    Changed at Mon 19 Jan 2026 16:37:15
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 8dcf02ac63d8f86b7d993e4a605c4b2875039c74

    Comments

    vulkan: remove IS_WITHIN macro
    This is the more correct GLSL solution.

    Changed files

    • libavcodec/vulkan/common.comp
    • libavcodec/vulkan/dpx_unpack.comp.glsl
    • libavfilter/vulkan/avgblur.comp.glsl
    • libavfilter/vulkan/bwdif.comp.glsl
  2. Change #255679

    Category ffmpeg
    Changed by Lynne <devohnoyoudont@lynne.ee>
    Changed at Mon 19 Jan 2026 16:37:16
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 713e3c4f918cdf37d7f3ad921c536ac749835733

    Comments

    vulkan_decode: do not align single-plane images to subsampling
    Unlike multiplane images, single-plane images do not need to be
    aligned to chroma width.
    Saves a bit of memory.

    Changed files

    • libavcodec/vulkan_decode.c
  3. Change #255680

    Category ffmpeg
    Changed by Lynne <devohnoyoudont@lynne.ee>
    Changed at Mon 19 Jan 2026 16:37:17
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision e3a96a69cb0deea8418db1117738dde700dc07ce

    Comments

    vulkan_dpx: remove host image upload path
    The main reason this was written was due to Nvidia. Nvidia always
    has a fickle upload path, and seemed to have a shortcut for the
    host image upload path. This seems to have been patched out of
    recent driver versions.
    
    This upload path relies on the driver keeping the same layout,
    down to the stride for the images. Which is an assumption that's
    not portable.
    
    Rather than relying on this fickle upload path, what we'd like when
    we want pure bandwidth is to decouple uploads to a separate queue,
    and let the GPU pull the data from RAM via uploads.
    
    It'll be slower with a single-threaded decoder, but currently all
    of our compute-based decoders and the decoders that sit underneath
    them support frame threading.

    Changed files

    • libavcodec/vulkan_dpx.c
  4. Change #255681

    Category ffmpeg
    Changed by Lynne <devohnoyoudont@lynne.ee>
    Changed at Mon 19 Jan 2026 16:37:17
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 3ccafa5906578c59db287886d2288ea45fc61704

    Comments

    ffv1_vulkan: generate a CRC table during runtime
    Since the recent CRC changes, get_table returns arch-dependent tables.

    Changed files

    • libavcodec/ffv1_vulkan.c