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

Builder ffmpegsos-solaris10-i386 Build #12912

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision3cc1dc335821ef0c8cf351aa850f46965f55c26b
Got Revision3cc1dc335821ef0c8cf351aa850f46965f55c26b
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 12912 Build
codebase Build
got_revision 3cc1dc335821ef0c8cf351aa850f46965f55c26b Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 3cc1dc335821ef0c8cf351aa850f46965f55c26b 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. Martin Storsjö

Timing:

StartFri Nov 21 22:17:49 2025
EndFri Nov 21 22:18:03 2025
Elapsed13 secs

All Changes:

:

  1. Change #249603

    Category ffmpeg
    Changed by Martin Storsjö <martinohnoyoudont@martin.st>
    Changed at Fri 21 Nov 2025 22:07:34
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 3cc1dc335821ef0c8cf351aa850f46965f55c26b

    Comments

    swscale: Remove the unused ff_sws_pixel_type_to_uint
    This function uses ff_sws_pixel_type_size to switch on the
    size of the provided type. However, ff_sws_pixel_type_size returns
    a size in bytes (from sizeof()), not a size in bits. Therefore,
    this would previously never return the right thing but always
    hit the av_unreachable() below.
    
    As the function is entirely unused, just remove it.
    
    This fixes compilation with MSVC 2026 18.0 when targeting ARM64,
    which previously hit an internal compiler error [1].
    
    [1] https://developercommunity.visualstudio.com/t/Internal-Compiler-Error-targeting-ARM64-/10962922

    Changed files

    • libswscale/ops.c
    • libswscale/ops.h