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

Builder ffmpeg-solaris10-i386 Build #13335

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 6 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 ( 0 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config.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/slave/ffmpeg-solaris10-i386 slave
buildername ffmpeg-solaris10-i386 Builder
buildnumber 13335 Build
codebase Build
got_revision 8429aec5e4a3348aac9dc4cbd6aba0be9dc77796 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 8429aec5e4a3348aac9dc4cbd6aba0be9dc77796 Build
scheduler schedule-ffmpeg-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/ffmpeg-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. stevxiao

Timing:

StartMon Mar 2 23:44:41 2026
EndMon Mar 2 23:44:59 2026
Elapsed18 secs

All Changes:

:

  1. Change #259621

    Category ffmpeg
    Changed by stevxiao <steven.xiaoohnoyoudont@amd.com>
    Changed at Mon 02 Mar 2026 22:59:32
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 8429aec5e4a3348aac9dc4cbd6aba0be9dc77796

    Comments

    avfilter: add d3d12 deinterlace filter `deinterlace_d3d12`
    This commit introduces a video filter `deinterlace_d3d12` that provides
    hardware-accelerated deinterlacing using the D3D12 Video Processor.
    
    The filter supports:
     - bob and custom (motion-adaptive)deinterlace modes
     - frame-rate and field-rate output
     - automatic interlace detection
    
    Sample command lines:
    
    1. Software decode with hwupload:
    
        ffmpeg -init_hw_device d3d12va=d3d12 -i interlaced.ts \
          -vf "format=nv12,hwupload,deinterlace_d3d12=mode=default,hwdownload,format=nv12" \
          -c:v libx264 output.mp4
    
    2. Full hardware pipeline:
    
        ffmpeg -hwaccel d3d12va -hwaccel_output_format d3d12 -i interlaced.ts \
          -vf "deinterlace_d3d12=mode=custom:rate=field" \
          -c:v h264_d3d12va output.mp4
    
    Signed-off-by: younengxiao <steven.xiao@amd.com>

    Changed files

    • Changelog
    • configure
    • libavfilter/Makefile
    • libavfilter/allfilters.c
    • libavfilter/version.h
    • libavfilter/vf_deinterlace_d3d12.c