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

Builder ffmpegsos-solaris10-i386 Build #14084

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpegsos-solaris10-i386' 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_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 14084 Build
codebase Build
got_revision 10f2abc41fdb8624a95676a10764904ee58e4ccb Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 10f2abc41fdb8624a95676a10764904ee58e4ccb 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

Timing:

StartSat Jun 13 23:39:18 2026
EndSat Jun 13 23:39:33 2026
Elapsed14 secs

All Changes:

:

  1. Change #270839

    Category ffmpeg
    Changed by Michael Niedermayer <michaelohnoyoudont@niedermayer.cc>
    Changed at Sat 13 Jun 2026 23:31:18
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 6049b4d7bc2be61cc91a1c412382b169697ca3c9

    Comments

    avformat/rtspdec: bound Content-Length in the ANNOUNCE handler to SDP_MAX_SIZE
    Reported by Franciszek Kalinowski (isec.pl / striga.ai) and Bartosz Smigielski.

    Changed files

    • libavformat/rtspdec.c
  2. Change #270840

    Category ffmpeg
    Changed by Michael Niedermayer <michaelohnoyoudont@niedermayer.cc>
    Changed at Sat 13 Jun 2026 23:32:37
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 10f2abc41fdb8624a95676a10764904ee58e4ccb

    Comments

    swscale: support sliced input with cascaded scaling contexts
    Previously scale_cascaded() assumed the whole source frame arrived in a
    single sws_scale() call, and the dispatcher only routed full-frame calls
    to it. A partial input slice fell through to ff_swscale() on the parent
    dispatcher context, whose scaler state (c->desc) is never initialized in
    cascade mode, causing a NULL dereference / crash.
    
    Top-down sliced output is bit-exact with full-frame scaling; bottom-up
    matches swscale's pre-existing (non-cascade) slice behaviour for
    subsampled intermediate formats.
    
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libswscale/swscale.c