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

Builder ffmpegsos-solaris10-sparc Build #13880

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision5f69124aaaed9f7e01dad8d849577826e7a5b20c
Got Revision5f69124aaaed9f7e01dad8d849577826e7a5b20c
Changes2 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 16 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 ( 10 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 13880 Build
codebase Build
got_revision 5f69124aaaed9f7e01dad8d849577826e7a5b20c Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 5f69124aaaed9f7e01dad8d849577826e7a5b20c 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. younengxiao

Timing:

StartFri Aug 21 08:50:44 2026
EndFri Aug 21 08:51:12 2026
Elapsed28 secs

All Changes:

:

  1. Change #278850

    Category ffmpeg
    Changed by younengxiao <steven.xiaoohnoyoudont@amd.com>
    Changed at Fri 21 Aug 2026 10:25:47
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 806f739fe553678496ac903917f4154803309ea8

    Comments

    avcodec/d3d12va_encode_av1: add AV1 B-frame (compound prediction) support
    This commit adds AV1 B-frame support.
        - Enable B-frame scheduling for the D3D12VA AV1 encoder by setting the
          ref_l0/ref_l1 capability.
        - Stash hidden (non-independent) anchor frames coded data and prepend
          it to the next visible frame packet (show_existing_frame handling).
        - Add FF_HW_FLAG_TIMESTAMP_NO_DELAY to avoid non-monotonic DTS warnings
          at higher B-frame reorder depths.
        - Set 2 B-frames as default(align with D3D12VA H.264 and HEVC encoder)
    
    Example usage:
        - default (2 B-frames will be applied):
          ffmpeg -hwaccel d3d12va -hwaccel_output_format d3d12 -i input.mp4 -c:v av1_d3d12va output.mp4
        - 3 B-frames:
          ffmpeg -hwaccel d3d12va -hwaccel_output_format d3d12 -i input.mp4 -c:v av1_d3d12va -bf 3 output.mp4
    
    Signed-off-by: younengxiao <steven.xiao@amd.com>

    Changed files

    • libavcodec/d3d12va_encode.c
    • libavcodec/d3d12va_encode.h
    • libavcodec/d3d12va_encode_av1.c
    • libavcodec/hw_base_encode.h
  2. Change #278851

    Category ffmpeg
    Changed by younengxiao <steven.xiaoohnoyoudont@amd.com>
    Changed at Fri 21 Aug 2026 10:25:47
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 5f69124aaaed9f7e01dad8d849577826e7a5b20c

    Comments

    avcodec/vaapi_encode: remove duplicate FLAG_TIMESTAMP_NO_DELAY
    Use the shared FF_HW_FLAG_TIMESTAMP_NO_DELAY flag from
    hw_base_encode.h instead of VAAPI's own private definition with the
    same value and semantics.
    
    Signed-off-by: younengxiao <steven.xiao@amd.com>

    Changed files

    • libavcodec/vaapi_encode.c
    • libavcodec/vaapi_encode.h
    • libavcodec/vaapi_encode_av1.c