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

Builder ffmpeg64-solaris10-sparc Build #13571

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 58 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_64.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/ffmpeg64-solaris10-sparc slave
buildername ffmpeg64-solaris10-sparc Builder
buildnumber 13571 Build
codebase Build
got_revision 9acd820732f0bf738bd743bbde6a5c3eadc216c2 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 9acd820732f0bf738bd743bbde6a5c3eadc216c2 Build
scheduler schedule-ffmpeg64-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpeg64-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Ashrit Shetty

Timing:

StartWed Apr 22 10:05:05 2026
EndWed Apr 22 10:06:13 2026
Elapsed1 mins, 8 secs

All Changes:

:

  1. Change #265168

    Category ffmpeg
    Changed by Ashrit Shetty <ashrit.shettyohnoyoudont@microsoft.com>
    Changed at Wed 22 Apr 2026 09:48:24
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 9acd820732f0bf738bd743bbde6a5c3eadc216c2

    Comments

    avcodec/mfenc: populate video input type with size, rate, interlace
    mf_encv_input_adjust() currently only validates the pixel format and
    otherwise leaves the input IMFMediaType unchanged. The Microsoft
    H.264, H.265 and AV1 encoder MFTs tolerate this and internally infer
    the missing attributes from the previously-set output type. Other
    MediaFoundation encoder MFTs that follow the specification more
    strictly reject the input type with MF_E_INVALIDMEDIATYPE (due to
    MF_E_ATTRIBUTENOTFOUND on MF_MT_FRAME_SIZE / MF_MT_FRAME_RATE) when
    those attributes are absent, which causes IMFTransform::SetInputType
    to fail and aborts encoding.
    
    Set MF_MT_FRAME_SIZE, MF_MT_FRAME_RATE and MF_MT_INTERLACE_MODE on
    the input media type, mirroring what mf_encv_output_adjust() already
    writes to the output type. Behaviour on the Microsoft MFTs is
    unchanged (they were already using these values) and encoding now
    works with stricter third-party MFTs.
    
    The MF_MT_FRAME_SIZE assignment has been present but commented out
    since the original MediaFoundation wrapper was added in 050b72ab5e.
    
    Signed-off-by: Ashrit Shetty <ashritshetty@microsoft.com>
    Signed-off-by: Martin Storsjö <martin@martin.st>

    Changed files

    • libavcodec/mfenc.c