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

Builder ffmpegsos-solaris10-sparc Build #12605

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 7 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 ( 4 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 12605 Build
codebase Build
got_revision fafd72ef0401e9f872449a141647013ece27c198 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision fafd72ef0401e9f872449a141647013ece27c198 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. Niklas Haas

Timing:

StartMon Dec 22 21:21:22 2025
EndMon Dec 22 21:21:42 2025
Elapsed20 secs

All Changes:

:

  1. Change #253085

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Mon 22 Dec 2025 21:14:31
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision fafd72ef0401e9f872449a141647013ece27c198

    Comments

    swscale/ops_internal: fix ff_sws_pack_op_decode()
    This function was assuming that the bits are MSB-aligned, but they are
    LSB-aligned in both practice (and in the actual backend).
    
    Also update the documentation of SwsPackOp to make this clearer.
    
    Fixes an incorrect omission of a clamp after decoding e.g. rgb4, since
    the max value range was incorrectly determined as 0 as a result of unpacking
    the MSB bits instead of the LSB bits:
    
     bgr4 -> gray:
       [ u8 XXXX -> +XXX] SWS_OP_READ         : 1 elem(s) packed >> 1
       [ u8 .XXX -> +++X] SWS_OP_UNPACK       : {1 2 1 0}
       [ u8 ...X -> +++X] SWS_OP_SWIZZLE      : 2103
       [ u8 ...X -> +++X] SWS_OP_CONVERT      : u8 -> f32
       [f32 ...X -> .++X] SWS_OP_LINEAR       : dot3 [...]
       [f32 .XXX -> .++X] SWS_OP_DITHER       : 16x16 matrix + {0 3 2 5}
    +  [f32 .XXX -> .++X] SWS_OP_MIN          : x <= {255 _ _ _}
       [f32 .XXX -> +++X] SWS_OP_CONVERT      : f32 -> u8
       [ u8 .XXX -> +++X] SWS_OP_WRITE        : 1 elem(s) planar >> 0
         (X = unused, + = exact, 0 = zero)

    Changed files

    • libswscale/ops.h
    • libswscale/ops_internal.h
    • tests/ref/fate/sws-ops-list