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

Builder ffmpeg64-solaris10-i386 Build #12814

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision5169b0c3dca3a142a84ed157c964cb650ff5a25e
Got Revision5169b0c3dca3a142a84ed157c964cb650ff5a25e
Changes1 change

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 4 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 ( 0 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config_64.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/ffmpeg64-solaris10-i386 slave
buildername ffmpeg64-solaris10-i386 Builder
buildnumber 12814 Build
codebase Build
got_revision 5169b0c3dca3a142a84ed157c964cb650ff5a25e Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 5169b0c3dca3a142a84ed157c964cb650ff5a25e Build
scheduler schedule-ffmpeg64-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/ffmpeg64-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Frank Plowman

Timing:

StartThu Nov 27 15:57:51 2025
EndThu Nov 27 15:58:06 2025
Elapsed15 secs

All Changes:

:

  1. Change #250242

    Category ffmpeg
    Changed by Frank Plowman <postohnoyoudont@frankplowman.com>
    Changed at Thu 27 Nov 2025 15:51:52
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 5169b0c3dca3a142a84ed157c964cb650ff5a25e

    Comments

    lavc/vvc: Ensure seq_decode is always updated with SPS
    seq_decode is used to ensure that a picture and all of its reference
    pictures use the same SPS. Any time the SPS changes, seq_decode should
    be incremented. Prior to this patch, seq_decode was incremented in
    frame_context_setup, which is called after the SPS is potentially
    changed in decode_sps. Should the decoder encounter an error between
    changing the SPS and incrementing seq_decode, the SPS could be modified
    while seq_decode was not incremented, which could lead to invalid
    reference pictures and various downstream issues. By instead updating
    seq_decode within the picture set manager, we ensure seq_decode and the
    SPS are always updated in tandem.

    Changed files

    • libavcodec/vvc/dec.c
    • libavcodec/vvc/ps.c