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

Builder ffmpegsos-solaris10-i386 Build #14265

Results:

Failed

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisionb04bbd863c578cdb0a706df7e36df191938ed51e
Changes2 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git updating ( 6 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 14265 Build
codebase Build
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision b04bbd863c578cdb0a706df7e36df191938ed51e 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. Michael Niedermayer
  2. Yongqiang Tian

Timing:

StartTue Sep 15 01:34:33 2026
EndTue Sep 15 01:34:40 2026
Elapsed6 secs

All Changes:

:

  1. Change #281844

    Category ffmpeg
    Changed by Yongqiang Tian <yqtian668ohnoyoudont@gmail.com>
    Changed at Tue 15 Sep 2026 03:13:33
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision fd625f452c0b59a61b81833de9f65a7b601a862c

    Comments

    avfilter/f_metadata: avoid overread on long formatted output
    vsnprintf() returns the number of characters that would have been written
    when its output is truncated. Passing that value to avio_write() makes it
    read beyond the 128-byte stack buffer for long metadata values.
    
    Use avio_vprintf() to write the complete formatted string without the fixed
    intermediate buffer.
    
    Fixes: b0159af6bc76553b1ab7546d821bb8c16a666cfd
    Signed-off-by: Yongqiang Tian <yqtian668@gmail.com>

    Changed files

    • libavfilter/f_metadata.c
  2. Change #281845

    Category ffmpeg
    Changed by Michael Niedermayer <michaelohnoyoudont@niedermayer.cc>
    Changed at Tue 15 Sep 2026 03:15:51
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision b04bbd863c578cdb0a706df7e36df191938ed51e

    Comments

    avfilter/vf_histogram: fix thistogram parade scroll overflow
    Use the width of one component section for the scroll write position.
    The full output width includes every parade section, so adding the later
    sections start offsets to it writes past the output frame.
    
    Add a FATE test covering multiple components in parade scroll mode.
    
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libavfilter/vf_histogram.c
    • tests/fate/filter-video.mak
    • tests/ref/fate/filter-thistogram-scroll