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

Builder ffmpeg-solaris10-sparc Build #12427

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision5733e08c97e50c1b64d671f9dfe26d3bc2d65039
Got Revision5733e08c97e50c1b64d671f9dfe26d3bc2d65039
Changes2 changes

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpeg-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 ( 8 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 2 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config.sh' failed ( 2 secs )
    1. stdio
    2. configure.log
    3. compile.log
    4. test.log

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/ffmpeg-solaris10-sparc slave
buildername ffmpeg-solaris10-sparc Builder
buildnumber 12427 Build
codebase Build
got_revision 5733e08c97e50c1b64d671f9dfe26d3bc2d65039 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 5733e08c97e50c1b64d671f9dfe26d3bc2d65039 Build
scheduler schedule-ffmpeg-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpeg-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Niklas Haas
  2. Ramiro Polla

Timing:

StartMon Aug 11 23:32:15 2025
EndMon Aug 11 23:32:37 2025
Elapsed21 secs

All Changes:

:

  1. Change #242717

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Mon 11 Aug 2025 23:21:55
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision f610b55525613b032b79f9c16607364ca07a611e

    Comments

    avfilter/vf_libplacebo: fix possible segfault when frame mixing
    pl_frame_mix_current() will return NULL if all frames are in the future,
    but when libplacebo is using a frame mixer with a radius greater than 1,
    future frames are expected to already be partially renderered. Instead, use
    pl_frame_mix_nearest(), which is guaranteed to give us a valid frame for any
    nonempty frame mix.
    
    Fixes: 3091bca3edb339a4d2ec8c64e52fa7e67a7d5005

    Changed files

    • libavfilter/vf_libplacebo.c
  2. Change #242718

    Category ffmpeg
    Changed by Ramiro Polla <ramiro.pollaohnoyoudont@gmail.com>
    Changed at Mon 11 Aug 2025 23:23:38
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 5733e08c97e50c1b64d671f9dfe26d3bc2d65039

    Comments

    avcodec/mjpegdec: decode only SOF fields when finding stream info
    When called from avformat_find_stream_info(), we are only interested in
    decoding SOF fields.
    
    This patch makes the decoder skip all other fields (including SOI, SOS,
    and EOI). This also prevents the decoder from incorrectly printing the
    warning "EOI missing, emulating" (which is the case since 2ae82788).
    
    Fixes: #20119

    Changed files

    • libavcodec/mjpegdec.c