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

Builder ffmpegsos-solaris10-sparc Build #14030

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision7070fe638e9e492fb327d277cd0a524d916e7778
Got Revision7070fe638e9e492fb327d277cd0a524d916e7778
Changes2 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 11 secs )
    1. stdio
  2. shell 'gsed -i ...' ( 2 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_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-unstable10s/slave/ffmpegsos-solaris10-sparc slave
buildername ffmpegsos-solaris10-sparc Builder
buildnumber 14030 Build
codebase Build
got_revision 7070fe638e9e492fb327d277cd0a524d916e7778 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 7070fe638e9e492fb327d277cd0a524d916e7778 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. Michael Niedermayer

Timing:

StartThu Sep 17 03:33:53 2026
EndThu Sep 17 03:34:19 2026
Elapsed25 secs

All Changes:

:

  1. Change #282000

    Category ffmpeg
    Changed by Michael Niedermayer <michaelohnoyoudont@niedermayer.cc>
    Changed at Thu 17 Sep 2026 05:09:07
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision d790378fdbde6ac051e816a8ef8eb9671ca9a591

    Comments

    avformat/mxfdec: restrict AVC-Intra extradata to intra-only streams
    Generating AVC-Intra parameter sets for ordinary AVC streams leaves
    codecpar with extradata unrelated to the in-band SPS/PPS. Seeking to a
    non-IDR I picture without parameter sets then initializes the decoder
    with the wrong headers, even when the stream has constant parameter sets.
    
    Use the existing intra-only classification to restrict this fallback,
    allowing stream probing to extract the actual headers for long GOP AVC.
    
    Add a probe test using the existing XAVC sample to check the extradata
    size and hash. It fails with the generated AVC-Intra headers.
    
    Fixes: #22467
    Assisted-by: Fairy

    Changed files

    • libavformat/mxfdec.c
    • tests/fate/mxf.mak
    • tests/ref/fate/mxf-probe-h264-extradata
  2. Change #282001

    Category ffmpeg
    Changed by Michael Niedermayer <michaelohnoyoudont@niedermayer.cc>
    Changed at Thu 17 Sep 2026 05:10:50
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 7070fe638e9e492fb327d277cd0a524d916e7778

    Comments

    avcodec/mfenc: guard D3D11 input support when disabled
    The D3D11 header is conditional, but the context members and frame
    processing helpers using its types are not. This breaks Media Foundation
    encoder builds with --disable-d3d11va.
    
    Guard the D3D11 context members, helpers and call site, as well as DLL
    loading, DXGI entry point loading and cleanup. Only advertise D3D11 input
    when the corresponding support is enabled.
    
    Fixes: d56522c6eb754cd5c648bc0c0b39bd4fbd77c47c
    Fixes: #23068
    
    Verified with x86_64-w64-mingw32 GCC 13 and mingw-w64 11.0.1:
    - The introducing commit fails and its parent builds mfenc.o with
      --disable-d3d11va.
    - Patched master builds and links ffmpeg.exe with D3D11VA on and off.
    - The patch applies to release/8.0, release/8.1 and release/9.0, where
      mfenc.o and mf_utils.o build with D3D11VA disabled after failing before.
    
    Assisted-by: Fairy

    Changed files

    • libavcodec/mfenc.c