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

Builder ffmpegsos-solaris10-i386 Build #13994

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisione1be70dcac1f84e425f00c32d012e8e10b20c082
Got Revisione1be70dcac1f84e425f00c32d012e8e10b20c082
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 13994 Build
codebase Build
got_revision e1be70dcac1f84e425f00c32d012e8e10b20c082 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision e1be70dcac1f84e425f00c32d012e8e10b20c082 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. Yong Yu

Timing:

StartWed Jun 3 01:52:39 2026
EndWed Jun 3 01:52:53 2026
Elapsed13 secs

All Changes:

:

  1. Change #269258

    Category ffmpeg
    Changed by Yong Yu <yuyong05ohnoyoudont@gmail.com>
    Changed at Wed 03 Jun 2026 01:42:01
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision e1be70dcac1f84e425f00c32d012e8e10b20c082

    Comments

    swscale/x86/yuv2rgb: fix planar GBRP boundary check in ssse3 assembly
        In yuv420_gbrp_ssse3, the boundary safeguard check "h_size * 3 >
        FFABS(dstStride[0])" was erroneously set based on probably packed RGB24
        formats (where each pixel spans 3 bytes per row).
    
        For GBRP (planar GBR), each plane contains only 1 component per pixel
        per row, meaning dstStride[0] corresponds exactly to width.
        Multiplying h_size by 3 mistakenly triggers the condition for normal
        widths, decreasing h_size by 8. This leaves the rightmost 8 pixels
        of every row completely uninitialized (black).
    
        Fix this by checking "h_size > FFABS(dstStride[0])" instead.
    
        How to Reproduce the error:
        1. Generate buggy and fixed outputs as PNGs using the 600x600 pipeline:
    
           buggy output without the fix
           $ ffmpeg -f lavfi -i color=c=red:size=600x600:rate=1 \
               -vf format=yuv420p,format=gbrp \
               -frames:v 1 -y buggy_red_600.png
           fixed output with the fix
           $ ffmpeg -f lavfi -i color=c=red:size=600x600:rate=1 \
               -vf format=yuv420p,format=gbrp \
               -frames:v 1 -y fixed_red_600.png
    
        2. Verify buggy_red_600.png in an image viewer:
           A strict, 8-pixel wide vertical black stripe (columns 592 to 599) is
           clearly visible running top-to-bottom down the rightmost edge of the image.
    
        3. Verify fixed_red_600.png in an image viewer as well:
           The output renders a perfect, uniform, fully solid red square across
           the entire 600x600 canvas, indicating the boundary bug is successfully resolved.

    Changed files

    • libswscale/x86/yuv2rgb.c