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

Builder ffmpeg-solaris10-sparc Build #13513

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 9 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 ( 8 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 13513 Build
codebase Build
got_revision f7ca6f74816311efa07e0cf6db6c7522b4bb847c Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision f7ca6f74816311efa07e0cf6db6c7522b4bb847c 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. Tymur Boiko

Timing:

StartSat Apr 11 14:54:53 2026
EndSat Apr 11 14:55:13 2026
Elapsed19 secs

All Changes:

:

  1. Change #264215

    Category ffmpeg
    Changed by Tymur Boiko <tboikoohnoyoudont@nvidia.com>
    Changed at Sat 11 Apr 2026 14:50:07
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision f7ca6f74816311efa07e0cf6db6c7522b4bb847c

    Comments

    vulkan: fix -Wdiscarded-qualifiers warning and misleading DRM modifier log
    ff_vk_find_struct returns const void *, so storing it in const void *drm_create_pnext
    fixes the initialization warning but then dpb_hwfc->create_pnext = drm_create_pnext
    assigns const void * to void *, triggering the same warning at that line. The right
    fix is a (void *) cast at the call site, same as done for buf_pnext.
    
    Also restrict the GetPhysicalDeviceImageFormatProperties2 verbose log in
    try_export_flags to the DRM modifier path only: when has_mods is false the log
    always printed mod[0]=0x0, which is misleading since no DRM modifier is involved.
    
    Signed-off-by: Tymur Boiko <tboiko@nvidia.com>

    Changed files

    • libavcodec/vulkan_decode.c
    • libavutil/hwcontext_vulkan.c