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

Builder ffmpeg-solaris10-sparc Build #14115

Results:

Failed

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisione2c335ab5c81bad21a641979feaaafae8c894d16
Changes5 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git updating ( 1 mins, 9 secs )
    1. stdio
  2. shell  
    1. - no logs -
  3. shell_1  
    1. - no logs -
  4. shell_2  
    1. - no logs -
  5. shell_3  
    1. - no logs -
  6. shell_4  
    1. - no logs -
  7. shell_5  
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/ffmpeg-solaris10-sparc slave
buildername ffmpeg-solaris10-sparc Builder
buildnumber 14115 Build
codebase Build
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision e2c335ab5c81bad21a641979feaaafae8c894d16 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. Lynne

Timing:

StartSat Aug 15 09:24:44 2026
EndSat Aug 15 09:25:54 2026
Elapsed1 mins, 9 secs

All Changes:

:

  1. Change #278269

    Category ffmpeg
    Changed by Lynne <devohnoyoudont@lynne.ee>
    Changed at Sat 15 Aug 2026 11:02:17
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 2a072b4961ac36fae1d4a62432d154f6616add68

    Comments

    vulkan_encode: do not carry source picture access flags into the barrier
    The source picture is written on other queues, whose access flags are
    meaningless on the encode queue: ALL_COMMANDS expands to only the
    stages the queue supports, none of which support e.g. TRANSFER_WRITE,
    making the barrier invalid (VUID 03915). The semaphore wait already
    made those writes available; use no source access, as decoding does.

    Changed files

    • libavcodec/vulkan_encode.c
  2. Change #278270

    Category ffmpeg
    Changed by Lynne <devohnoyoudont@lynne.ee>
    Changed at Sat 15 Aug 2026 11:02:17
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision db481362ed37dd44e85faf464c7f9da884644258

    Comments

    vulkan_video: map the plain H264 baseline profile to a Vulkan profile
    The encoder maps the SPS profile_idc, which has the constraint set
    flags stripped, giving session parameters an invalid profile enum for
    constrained baseline.

    Changed files

    • libavcodec/vulkan_video.c
  3. Change #278271

    Category ffmpeg
    Changed by Lynne <devohnoyoudont@lynne.ee>
    Changed at Sat 15 Aug 2026 11:02:17
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 173eb83c152186dabbc136764b7de1d3003b4c77

    Comments

    vulkan_encode_h264: signal High profile syntax only where the profile permits it
    The capability flags only mean the implementation supports the syntax:
    baseline and main profiles prohibit the PPS extension and scaling
    matrices, and setting them on drivers advertising support made CBS
    reject the headers, as transform_8x8_mode_flag must match its inferred
    value.
    
    Fixes #21022.

    Changed files

    • libavcodec/vulkan_encode_h264.c
  4. Change #278272

    Category ffmpeg
    Changed by Lynne <devohnoyoudont@lynne.ee>
    Changed at Sat 15 Aug 2026 11:02:17
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision c4b4a9c0ea46adaef2f046e1bbe888e4a5f188d4

    Comments

    vulkan_encode_h264: disable B-frames for baseline profiles
    Baseline only permits I and P slices, yet streams declaring
    constraint_set1_flag contained B-slices.

    Changed files

    • libavcodec/vulkan_encode_h264.c
  5. Change #278273

    Category ffmpeg
    Changed by Lynne <devohnoyoudont@lynne.ee>
    Changed at Sat 15 Aug 2026 11:02:17
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision e2c335ab5c81bad21a641979feaaafae8c894d16

    Comments

    vulkan_encode_h264: fix the high444p profile value
    It was set to High 10, which no Vulkan profile enum maps to, breaking
    both the option and >8bpc profile probing.

    Changed files

    • libavcodec/vulkan_encode_h264.c