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

Builder ffmpegsos-solaris10-sparc Build #11745

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 28 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 ( 3 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-unstable10s/slave/ffmpegsos-solaris10-sparc slave
buildername ffmpegsos-solaris10-sparc Builder
buildnumber 11745 Build
codebase Build
got_revision df824211c253a0e2eebe50aaa93617208beabf61 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision df824211c253a0e2eebe50aaa93617208beabf61 Build
scheduler schedule-ffmpegsos-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpegsos-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Andreas Rheinhardt

Timing:

StartMon Apr 21 17:25:11 2025
EndMon Apr 21 17:25:53 2025
Elapsed41 secs

All Changes:

:

  1. Change #227759

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Mon 21 Apr 2025 16:43:39
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 494061a49aa4468f2fecae9b25e5870e86273e99

    Comments

    avcodec/vp8: Maintain consistency of frame pointers
    Right now it is possible for the pointer for the current frame to
    be set in the context even when it could not be properly set up;
    this does not influence the ordinary ref frames, but only
    VP8Context.prev_frame. And since this code has been ported to the
    ProgressFrame API in d48d7bc434f30dfbdf346f16715e4f2044b3e000,
    this leads to segfaults, because the ProgressFrame API is less
    forgiving than the ThreadFrame API (waiting on an uninitialized
    ProgressFrame segfaults, waiting on an uninitialized ThreadFrame
    is a no-op (the code behaves as if frame-threading is not in use)).
    
    Fix this by maintaining the consistency of the frame pointers
    in the context (by setting them later).
    
    Fixes: NULL pointer dereference
    Fixes: 68192/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VP8_fuzzer-6180311026171904
    
    Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/vp8.c
  2. Change #227760

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Mon 21 Apr 2025 17:02:44
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision df824211c253a0e2eebe50aaa93617208beabf61

    Comments

    avcodec/vc2enc: Improve error codes
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavcodec/vc2enc.c