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

Builder ffmpegsos-solaris10-i386 Build #13241

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 4 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/slave/ffmpegsos-solaris10-i386 slave
buildername ffmpegsos-solaris10-i386 Builder
buildnumber 13241 Build
codebase Build
got_revision 451ff239e65e04197def85567b2d7b083456e01c Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 451ff239e65e04197def85567b2d7b083456e01c 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. stevxiao

Timing:

StartMon Jan 26 12:39:15 2026
EndMon Jan 26 12:39:28 2026
Elapsed13 secs

All Changes:

:

  1. Change #256412

    Category ffmpeg
    Changed by stevxiao <steven.xiaoohnoyoudont@amd.com>
    Changed at Mon 26 Jan 2026 12:31:48
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 451ff239e65e04197def85567b2d7b083456e01c

    Comments

    avfilter: d3d12 motion estimation filter support
    This commit introduces a video filter `mestimate_d3d12` that provides hardware-accelerated motion estimation using DirectX 12 Video Encoding APIs. The filter leverages GPU hardware motion estimation capabilities to achieve significant performance improvements over the existing software-based mestimate filter.
    
    Sample Command Line:
    
    1. Basic mestimate_d3d12 functionality
    ```
    	ffmpeg_g.exe -hwaccel d3d12va -i test.mp4 -vf mestimate_d3d12=mb_size=16 -f null -
    ```
    2. Motion vector visualization
    ```
    	ffmpeg -hwaccel d3d12va -i input.mp4 -vf "mestimate_d3d12,hwdownload,format=nv12,codecview=mv=pf" -c:v libx264 output.mp4
    ```

    Changed files

    • Changelog
    • configure
    • libavfilter/Makefile
    • libavfilter/allfilters.c
    • libavfilter/vf_mestimate_d3d12.c