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

Builder ffmpegsos-solaris10-sparc Build #12506

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 9 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 ( 8 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 4 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config_sos.sh' failed ( 2 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 12506 Build
codebase Build
got_revision 7b2ae2ccf79954fb7d3e3a668e0bd50bd512040d Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 7b2ae2ccf79954fb7d3e3a668e0bd50bd512040d 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. stevxiao

Timing:

StartThu Dec 4 09:38:01 2025
EndThu Dec 4 09:38:26 2025
Elapsed24 secs

All Changes:

:

  1. Change #250875

    Category ffmpeg
    Changed by stevxiao <steven.xiaoohnoyoudont@amd.com>
    Changed at Thu 04 Dec 2025 09:26:26
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 7b2ae2ccf79954fb7d3e3a668e0bd50bd512040d

    Comments

    avcodec/d3d12va_encode: add intra refresh support for d3d12va encode
    Intra refresh is a technique that gradually refreshes the video by encoding rows or regions as intra macroblocks/CTUs spread over multiple frames, rather than using periodic I-frames.
    This provides better error resilience for video streaming while maintaining more consistent bitrate.
    
    Disable Intra Refresh (This is the default)
    ffmpeg -init_hw_device d3d12va -hwaccel d3d12va -hwaccel_output_format d3d12 \
    -i input.mp4 \
    -c:v h264_d3d12va \
    -intra_refresh_mode none \
    -intra_refresh_duration 30 \
    -g 60 \
    output.h264
    
    Enable Intra Refresh
    ffmpeg -init_hw_device d3d12va -hwaccel d3d12va -hwaccel_output_format d3d12 \
    -i input.mp4 \
    -c:v h264_d3d12va \
    -intra_refresh_mode row_based \
    -intra_refresh_duration 30 \
    -g 60 \
    output.h264
    
    Parameters
    - `-intra_refresh_mode`: Set to `row_based` to enable row-based intra refresh, or `NONE` to disable
    - `-intra_refresh_duration`: Number of frames over which to spread the intra refresh (default: 0 = use GOP size)
    - `-g`: GOP size (should typically be larger than intra refresh duration)

    Changed files

    • configure
    • libavcodec/d3d12va_encode.c
    • libavcodec/d3d12va_encode.h
    • libavcodec/d3d12va_encode_av1.c
    • libavcodec/d3d12va_encode_h264.c
    • libavcodec/d3d12va_encode_hevc.c