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

Builder ffmpegsos-solaris10-i386 Build #14081

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 7 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 ( 15 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/slave/ffmpegsos-solaris10-i386 slave
buildername ffmpegsos-solaris10-i386 Builder
buildnumber 14081 Build
codebase Build
got_revision 3773831c211ecef2d35098ac5d2c913800f2dbc7 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 3773831c211ecef2d35098ac5d2c913800f2dbc7 Build
scheduler schedule-ffmpegsos-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/ffmpegsos-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Ling, Edison

Timing:

StartSat Jun 13 13:59:24 2026
EndSat Jun 13 13:59:49 2026
Elapsed24 secs

All Changes:

:

  1. Change #270767

    Category ffmpeg
    Changed by Ling, Edison <Edison.Lingohnoyoudont@amd.com>
    Changed at Sat 13 Jun 2026 13:21:14
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 3773831c211ecef2d35098ac5d2c913800f2dbc7

    Comments

    avcodec/d3d12va_encode: Add H264/HEVC constrained intra prediction parameter support
    Add parameter `constrained_intra_pred` for users to enable constrained intra prediction (as opposed to default unconstrained) in D3D12 H264 and HEVC encoding.
    
    Usage:
      false (default): `-constrained_intra_pred false`  or  `-constrained_intra_pred 0`
      true:            `-constrained_intra_pred true`   or  `-constrained_intra_pred 1`
    
    Sample command line:
    ```
    ffmpeg.exe -hwaccel d3d12va -hwaccel_output_format d3d12 -i input.mp4 -c:v h264_d3d12va -constrained_intra_pred true -y output.mp4
    ffmpeg.exe -hwaccel d3d12va -hwaccel_output_format d3d12 -i input.mp4 -c:v hevc_d3d12va -constrained_intra_pred true -y output.mp4
    ```

    Changed files

    • libavcodec/d3d12va_encode_h264.c
    • libavcodec/d3d12va_encode_hevc.c