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

Builder ffmpeg-solaris10-sparc Build #13988

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 53 secs )
    1. stdio
  2. shell 'gsed -i ...' ( 0 secs )
    1. stdio
  3. shell_1 'gsed -i ...' ( 1 secs )
    1. stdio
  4. shell_2 'gsed -i ...' failed ( 0 secs )
    1. stdio
  5. shell_3 './configure --samples="../../../ffmpeg/fate-suite" ...' failed ( 29 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 13988 Build
codebase Build
got_revision bcd2c69e087a09b07cf45c6bd2428ee1ccb2925c Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision bcd2c69e087a09b07cf45c6bd2428ee1ccb2925c 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. Kacper Michajłow

Timing:

StartFri Jun 26 18:36:49 2026
EndFri Jun 26 18:38:17 2026
Elapsed1 mins, 27 secs

All Changes:

:

  1. Change #272953

    Category ffmpeg
    Changed by Kacper Michajłow <kasper93ohnoyoudont@gmail.com>
    Changed at Fri 26 Jun 2026 18:30:14
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision bcd2c69e087a09b07cf45c6bd2428ee1ccb2925c

    Comments

    avcodec/d3d12va: fix reference-only resource pool exhaustion
    When the driver requires REFERENCE_ONLY allocations, get_reference_only_resource()
    is called for each frame's output surface but did not check whether that surface
    was already mapped to a slot. As the frame pool recycles output surfaces, a
    recycled surface that was still mapped got assigned a new slot every time,
    leaking slots until the pool was exhausted and decoding failed with "No space
    for new Reference frame!".
    
    Reuse the slot already mapped to an output resource. Also iterate the full
    max_num_ref + 1 pool that is allocated: the extra slot covers the new current
    frame, which is acquired before prepare_reference_only_resources() releases the
    previous frame's slots.
    
    Signed-off-by: Kacper Michajłow <kasper93@gmail.com>

    Changed files

    • libavcodec/d3d12va_decode.c