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

Builder ffmpegsos-solaris10-i386 Build #14319

Results:

Failed

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisiona9cbcc2bbb9f64256834af2a22e31dd465a81f9d
Changes1 change

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git updating ( 8 secs )
    1. stdio
  2. shell  
    1. - no logs -
  3. shell_1  
    1. - no logs -
  4. shell_2  
    1. - no logs -
  5. shell_3  
    1. - no logs -
  6. shell_4  
    1. - no logs -
  7. shell_5  
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/ffmpegsos-solaris10-i386 slave
buildername ffmpegsos-solaris10-i386 Builder
buildnumber 14319 Build
codebase Build
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision a9cbcc2bbb9f64256834af2a22e31dd465a81f9d 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. Lynne

Timing:

StartMon Sep 21 03:44:07 2026
EndMon Sep 21 03:44:16 2026
Elapsed8 secs

All Changes:

:

  1. Change #282365

    Category ffmpeg
    Changed by Lynne <devohnoyoudont@lynne.ee>
    Changed at Mon 21 Sep 2026 05:20:41
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision a9cbcc2bbb9f64256834af2a22e31dd465a81f9d

    Comments

    hwcontext_vulkan: support frames with negative linesizes
    None of the transfer paths handled a bottom-up software frame. The
    staging buffer path stored the linesize in the unsigned row length, so
    the buffer size wrapped to several gigabytes per plane, and passed it as
    the byte width of av_image_copy_plane(), a negative length for memcpy.
    The host image copy path did the same with memoryRowLength, and host
    mapping rejected the frame, which only led to the staging buffer.
    
    Use the absolute linesize for the buffer row length and copy width, as
    av_image_copy_plane() walks a negative stride itself, and skip host
    copies and host mapping for such frames, as neither can address rows
    downwards from the plane pointer.

    Changed files

    • libavutil/hwcontext_vulkan.c