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

Builder ffmpegsos-solaris10-sparc Build #12560

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 13 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_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 12560 Build
codebase Build
got_revision c3291993eb16cc732da486b9b7d51657b9d715d9 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision c3291993eb16cc732da486b9b7d51657b9d715d9 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. Lynne

Timing:

StartSat Dec 13 19:41:22 2025
EndSat Dec 13 19:41:44 2025
Elapsed22 secs

All Changes:

:

  1. Change #252068

    Category ffmpeg
    Changed by Lynne <devohnoyoudont@lynne.ee>
    Changed at Sat 13 Dec 2025 19:12:20
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 018ba6b6124f7fa112462c50969a4032cebdf479

    Comments

    vulkan_decode: do not reset the decoder when flushing
    The issue is that .flush gets called asynchronously, and modifies the
    video session state while its being used for decoding. This did not
    result in issues since all known vendors do not keep important state
    there, but its not compliant with the specs.
    
    Its not necessary to flush the decoder at all when seeking,
    so simply don't.
    
    Fixes #20487

    Changed files

    • libavcodec/vulkan_av1.c
    • libavcodec/vulkan_dpx.c
    • libavcodec/vulkan_ffv1.c
    • libavcodec/vulkan_h264.c
    • libavcodec/vulkan_hevc.c
    • libavcodec/vulkan_prores.c
    • libavcodec/vulkan_prores_raw.c
    • libavcodec/vulkan_vp9.c
  2. Change #252069

    Category ffmpeg
    Changed by Lynne <devohnoyoudont@lynne.ee>
    Changed at Sat 13 Dec 2025 19:12:24
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 72e83b42d1da93df7cc677ea6bc8d0bc379075cb

    Comments

    vulkan_decode: clean up decoder initialization
    Now that we don't reset on every seek, we can simplify it.

    Changed files

    • libavcodec/vulkan_decode.c
    • libavcodec/vulkan_decode.h
  3. Change #252070

    Category ffmpeg
    Changed by Lynne <devohnoyoudont@lynne.ee>
    Changed at Sat 13 Dec 2025 19:12:24
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 91deb96d3c213f42fd4170649fe0e883a4472647

    Comments

    vulkan_decode: don't set unnecessary function pointers for FFHWAccel
    Invalidate is not used for SDR decoders, since they don't use session
    parameters.

    Changed files

    • libavcodec/vulkan_dpx.c
    • libavcodec/vulkan_ffv1.c
    • libavcodec/vulkan_prores.c
    • libavcodec/vulkan_prores_raw.c
  4. Change #252071

    Category ffmpeg
    Changed by Lynne <devohnoyoudont@lynne.ee>
    Changed at Sat 13 Dec 2025 19:12:24
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision c3291993eb16cc732da486b9b7d51657b9d715d9

    Comments

    vulkan_ffv1: use proper rounded divisions for plane width and height
    Fixes #20314

    Changed files

    • libavcodec/vulkan/common.comp
    • libavcodec/vulkan/ffv1_dec.comp
    • libavcodec/vulkan/ffv1_enc.comp