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

Builder ffmpeg-solaris10-sparc Build #12369

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisione0440eb3929d2ebcc33188f4b7c551a910852985
Got Revisione0440eb3929d2ebcc33188f4b7c551a910852985
Changes6 changes

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpeg-solaris10-sparc' 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 ( 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.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/ffmpeg-solaris10-sparc slave
buildername ffmpeg-solaris10-sparc Builder
buildnumber 12369 Build
codebase Build
got_revision e0440eb3929d2ebcc33188f4b7c551a910852985 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision e0440eb3929d2ebcc33188f4b7c551a910852985 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. David Rosca
  2. Lynne
  3. Russell Greene

Timing:

StartTue Aug 5 17:02:23 2025
EndTue Aug 5 17:02:40 2025
Elapsed17 secs

All Changes:

:

  1. Change #242144

    Category ffmpeg
    Changed by Lynne <devohnoyoudont@lynne.ee>
    Changed at Tue 05 Aug 2025 16:51:13
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision d3288013abfe42942d0b598a46807e7f68af4ae3

    Comments

    vf_libplacebo: add support for specifying a LUT for the input
    This makes it possible to apply Adobe .cube files to inputs.

    Changed files

    • doc/filters.texi
    • libavfilter/vf_libplacebo.c
  2. Change #242145

    Category ffmpeg
    Changed by Lynne <devohnoyoudont@lynne.ee>
    Changed at Tue 05 Aug 2025 16:51:21
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 53826f1815240c8ecddba408ed517f4f242ace80

    Comments

    hwcontext_vulkan: temporarily disable host_image_copy
    NVIDIA's support for it is a disaster.
    Of no benefit to other vendors.
    
    NVIDIA are working on fixing it, but it may take time.

    Changed files

    • libavutil/hwcontext_vulkan.c
  3. Change #242146

    Category ffmpeg
    Changed by Lynne <devohnoyoudont@lynne.ee>
    Changed at Tue 05 Aug 2025 16:51:21
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 50756b88d53e33889927069011f63c50e74b2e06

    Comments

    hwcontext_vulkan: enable uniformBufferStandardLayout

    Changed files

    • libavutil/hwcontext_vulkan.c
  4. Change #242147

    Category ffmpeg
    Changed by Lynne <devohnoyoudont@lynne.ee>
    Changed at Tue 05 Aug 2025 16:51:21
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 2c3315b04cd5198fb7b3f36a2eb8bbd00e024254

    Comments

    lavc/vulkan/common: sign-ify lengths
    This makes left_bits return useful data rather than overflowing, and
    also saves some 64-bit integer operations, which is still always a plus sadly.

    Changed files

    • libavcodec/vulkan/common.comp
    • libavcodec/vulkan/ffv1_dec_setup.comp
    • libavcodec/vulkan/ffv1_vlc.comp
  5. Change #242148

    Category ffmpeg
    Changed by David Rosca <nowrepohnoyoudont@gmail.com>
    Changed at Tue 05 Aug 2025 16:52:15
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision cc126afc91dc3efb66659a33aec15e649d3a8a75

    Comments

    vulkan_encode_h264/5: Fix uninitialized return value in write_extra_headers

    Changed files

    • libavcodec/vulkan_encode_h264.c
    • libavcodec/vulkan_encode_h265.c
  6. Change #242149

    Category ffmpeg
    Changed by Russell Greene <russellgreene8ohnoyoudont@gmail.com>
    Changed at Tue 05 Aug 2025 16:53:58
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision e0440eb3929d2ebcc33188f4b7c551a910852985

    Comments

    hwcontext_vulkan: fix exporting multi-plane DRM modifiers
    Previously, it was assumed that `drmFormatModifierPlaneCount` was one
    for all modifiers when exporting, which is not always the case, in
    particular for AMD GPUs and maybe others.
    
    Fetch the number of memory planes and fill the structs appropriately in this situation.
    
    The encoded stream is still bad in the case whre modifers are involved,
    but I think this patch still stands on its own and I suspect that may be a driver bug.
    
    A potential improvement that could be make is to cache the format
    information, so we can avoid the two GetPhysicalDeviceFormatProperties2
    calls for each export, as well as the allocation. I doubt this is very
    expensive, but seemed worth noting.
    
    v2 changes: query the format properties with the test image created in
    `vulkan_frames_init` to avoid allocating space for the query during
    export
    
    Signed-off-by: Russell Greene <russellgreene8@gmail.com>

    Changed files

    • libavutil/hwcontext_vulkan.c