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

Builder ffmpegsos-solaris10-sparc Build #12369

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpegsos-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 ( 7 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 3 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 12369 Build
codebase Build
got_revision 3eb0cb3b0b0c4ad3ca14818adb26e0f2b6fa1c6c Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 3eb0cb3b0b0c4ad3ca14818adb26e0f2b6fa1c6c 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. Kacper Michajłow

Timing:

StartWed Nov 5 20:47:50 2025
EndWed Nov 5 20:48:12 2025
Elapsed21 secs

All Changes:

:

  1. Change #247718

    Category ffmpeg
    Changed by Kacper Michajłow <kasper93ohnoyoudont@gmail.com>
    Changed at Wed 05 Nov 2025 19:04:00
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 08d327e92c967f75e024d8a3b0dc8399ab2c0156

    Comments

    fftools/ffmpeg: suppress unused variable warning, but using it
    Signed-off-by: Kacper Michajłow <kasper93@gmail.com>

    Changed files

    • fftools/ffmpeg.c
  2. Change #247720

    Category ffmpeg
    Changed by Kacper Michajłow <kasper93ohnoyoudont@gmail.com>
    Changed at Wed 05 Nov 2025 19:04:01
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision c3ff7d23f5cf1c295cb79ac25569555e12efa6cf

    Comments

    avcodec/dxva2: move variable declaration to for loop to avoid warning
    Signed-off-by: Kacper Michajłow <kasper93@gmail.com>

    Changed files

    • libavcodec/dxva2.c
  3. Change #247721

    Category ffmpeg
    Changed by Kacper Michajłow <kasper93ohnoyoudont@gmail.com>
    Changed at Wed 05 Nov 2025 19:04:01
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision f47896422674504d053712a59f42f130c3836e46

    Comments

    avcodec/vulkan_encode_av1: fix unit_elems check
    Wrong enum value was used to check unit_elems. While
    AV_FRAME_DATA_MASTERING_DISPLAY_METADATA (11) would trigger when
    UNIT_MASTERING_DISPLAY (2) was set, it also would match
    UNIT_CONTENT_LIGHT_LEVEL (1) which is not expected.
    
    Signed-off-by: Kacper Michajłow <kasper93@gmail.com>

    Changed files

    • libavcodec/vulkan_encode_av1.c
  4. Change #247722

    Category ffmpeg
    Changed by Kacper Michajłow <kasper93ohnoyoudont@gmail.com>
    Changed at Wed 05 Nov 2025 19:04:09
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 3eb0cb3b0b0c4ad3ca14818adb26e0f2b6fa1c6c

    Comments

    avutil/hwcontext_vulkan: use correct bitmask types
    Vulkan headers define *FlagBits enum with individual bit values, and
    coresponding *Flags typedef to be used to store the bitmask of
    coresponding bits.
    
    In practice those two types map to the same type, but for consistency
    *Flags should be used.
    
    Fixes MSVC warnings about type mismatch.
    
    Signed-off-by: Kacper Michajłow <kasper93@gmail.com>

    Changed files

    • libavutil/hwcontext_vulkan.c