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

Builder ffmpegsos-solaris10-sparc Build #12599

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 1 mins, 31 secs )
    1. stdio
  2. shell 'gsed -i ...' ( 1 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 ( 37 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 1 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config_sos.sh' failed ( 1 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 12599 Build
codebase Build
got_revision 64b9be2dc51d49d05ad46edec85d68034dd120e2 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 64b9be2dc51d49d05ad46edec85d68034dd120e2 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:

StartMon Dec 22 06:45:08 2025
EndMon Dec 22 06:47:21 2025
Elapsed2 mins, 13 secs

All Changes:

:

  1. Change #252994

    Category ffmpeg
    Changed by stevxiao <steven.xiaoohnoyoudont@amd.com>
    Changed at Mon 22 Dec 2025 06:35:04
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 64b9be2dc51d49d05ad46edec85d68034dd120e2

    Comments

    avcodec/d3d12va_encode: support motion estimation precision mode
    By default, the D3D12 video encoder uses MAXIMUM, which means no restriction—it uses the highest precision supported by the driver.
    
    Applications may want to reduce precision to improve speed or reduce power consumption. This requires the encoder to support user-defined motion estimation precision modes.
    
    D3D12_VIDEO_ENCODER_MOTION_ESTIMATION_PRECISION_MODE defines several precision modes:
    
    maximum: No restriction, uses the maximum precision supported by the driver.
    full_pixel: Allows only full-pixel precision.
    half_pixel: Allows half-pixel precision.
    quarter-pixel: Allows quarter-pixel precision.
    eighth-pixel: Allows eighth-pixel precision (introduced in Windows 11).
    
    Sample Command Line:
    
    ffmpeg -hwaccel d3d12va -hwaccel_output_format d3d12 -extra_hw_frames 20 -i input.mp4 -an -c:v h264_d3d12va -me_precision half_pixel out.mp4

    Changed files

    • configure
    • libavcodec/d3d12va_encode.c
    • libavcodec/d3d12va_encode.h