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

Builder ffmpeg64-solaris10-sparc Build #13679

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 5 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 13679 Build
codebase Build
got_revision d0a84c660a7b40d906e49dc6ae6d243b88d20aff Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision d0a84c660a7b40d906e49dc6ae6d243b88d20aff 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. Ramiro Polla

Timing:

StartFri May 15 16:32:30 2026
EndFri May 15 16:32:45 2026
Elapsed15 secs

All Changes:

:

  1. Change #267252

    Category ffmpeg
    Changed by Ramiro Polla <ramiro.pollaohnoyoudont@gmail.com>
    Changed at Fri 15 May 2026 16:21:50
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision d0a84c660a7b40d906e49dc6ae6d243b88d20aff

    Comments

    swscale/unscaled: fix rgbToRgbWrapper for non-native-endian formats
    The fix from 5fa2a65c11 introduced a regression for non-native-endian
    formats (such as rgb565be on a little-endian system).
    
    Reproducible with:
    $ ./libswscale/tests/swscale -unscaled 1 -src rgb565be -dst rgb24
    
    Also:
    $ ./ffmpeg_g -i /opt/samples/jpegls/128.jls -vf "scale=size=512x512,format=rgb24,scale=flags=neighbor,format=rgb565be" -f rawvideo -vframes 1 -y rgb565be.raw
    $ magick -size 512x512 -endian MSB RGB565:rgb565be.raw output.png
    $ ./ffplay_g output.png
    
    (note: don't use ffmpeg to convert from rgb565be.raw to output for the
    test above since it will perform the same bug and cancel out the error)

    Changed files

    • libswscale/swscale_unscaled.c